• The font on my blog page is too small, it looks silly : http://www.carldispoto.com/carl-dispotos-blog/

    How do I fix this. The CSS indicates :
    body {
    background-color: #fff;
    color: #000;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    }

    … so I’m not sure what the issue is.

Viewing 5 replies - 1 through 5 (of 5 total)
  • @cdispoto

    The following line is whet’s setting the font-size in you CSS

    font-size: 12px

    it’s generally a good idea to stay away from “fixed” sizes and use relative sizes instead.

    Anyways 12px is too small for my taste but that’s just personal preference.

    Thread Starter cdispoto

    (@cdispoto)

    Thanks for the tip but how should I alter the code?

    @cdispoto

    Since you’re using WordPress 4.7

    You can go to the theme customizer and find the CSS editor there.

    Add this code and replace the 12px with a value of your choice – like 14px or 18px etc…

    Here’s the code:

    
    
    body {
    font-size: 12px;
    }
    
    
    Thread Starter cdispoto

    (@cdispoto)

    Thanks!

    @cdispoto

    You’re welcome!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Blog Font To Small’ is closed to new replies.