• How can I change the font and size of the whole website?

    I try to access to style.css file but there isn’t any code to change it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Click on the blue CustomizeIt button on your admin menu bar on the top. Click on Custom CSS and paste the code given below:
    body {
    margin-bottom: 150px;
    font-size: 17px;
    font-family: Georgia, Helvetica, Arial, sans-serif;
    color: #3f3f3f;
    line-height: 28px;
    background-color: white;
    }
    code, pre {
    padding: 0 3px 2px;
    font-family: Georgia, Helvetica, Arial, sans-serif;
    font-size: 17px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    }
    The body { part of the code given above changes the font, its color and size on your blog.
    The code, pre { part changes the font and size of your links in the post.
    You can play with the font size, font-family, color and line-height values to get what you desire.

    THANKS! This is exactly what I was looking for and, while I could not figure out how to search within this specific support forum, I am glad I took the time to look for subject lines appropriate to my question(s).
    John
    http://www.havebluepower.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change font and size’ is closed to new replies.