• I’m just wondering what i should be looking out for in the css to add a font-size statement. I want to alter JUST the main blog font size.

Viewing 2 replies - 16 through 17 (of 17 total)
  • Thread Starter chriscrinkle

    (@chriscrinkle)

    UPDATE: Never mind, i figured that out. ‘Twas “p { font-size: […] }” as i should have guessed!

    You could try editing style.css (line 115)

    p {
    font-size:14px;
    line-height:17px;
    padding-bottom:12px;
    }

    Drop the font-size to something smaller like 12px. Or .8em.

    However, that’s going to impact on all <p> tags across the site, so, if it was me, I’d add something like:

    .entry_content p {font-size:80%}

    to the bottom of style.css to reduce the font size within the post area only.

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘how to alter blog font size?’ is closed to new replies.