• Hi! I’ve read a few other threads on this topic, but none of the solutions are working for me. I’m trying to increase the body font size on my website, but nothing is making it budge. I’ve tried using the “Additional CSS” section of my Appearance backend, installing custom CSS plugins, and going directly into my theme’s CSS and adding code into a few different spots there, all to no avail. I’ve tried a few different codes:

    
    body {
        font-size: 14px;
    }
    

    and

    
    p {
    font-size: 14px;
    font-size: 1.4em;
    }
    

    Anyone have any ideas? My site is https://www.onehangrymama.com. I’m fairly new to this, so appreciate any help!

Viewing 1 replies (of 1 total)
  • 
    body {
        font-family: Open Sans Condensed;
        font-size: 1.4em;
    }
    

    worked for me fine. Here is a screenshot of developer tool. I added the line font-size: 14px; inside body rule.

    https://prnt.sc/f034x1

    Adding p {font-size: 1.4em;} to Additional CSS worked fine too for me.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing Body Font Size’ is closed to new replies.