Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter J Marlow

    (@j-marlow)

    Whoops. Make that https://fitstormblog.com/

    Looking at your CSS, pages are using the .entry div, and that div is currently inheriting its font size from “body.” This is it:

    body {
    font-family:Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;
    font-size:10px;
    }

    You could either change that 10px to something else, or add a font size in .entry to override it.

    Thread Starter J Marlow

    (@j-marlow)

    Thanks chellycat!

    First option also changed sidebar text size; second did the trick–but two mysteries remain:

    Why can I not get line spaces between my page paragraphs (even when using html view and inserting BRs), and why does the text on the pages look different from the same (dont and size) text in the blog entries?

    Thanks again.

    For the spaces between paragraphs, remove the margin-bottom: 0 setting in the following rule in your CSS:

    div#blog .entry p {
    color:#909090;
    font-family:Verdana,Arial,Helvetica,sans-serif;
    line-height:16px;
    <strong>margin-bottom:0;</strong>
    margin-left:0;
    margin-right:0;
    margin-top:0;
    padding-bottom:0;
    padding-left:0;
    padding-right:0;
    padding-top:0;
    }

    The text in your blog entries is controlled by another CSS class: #blog_center .item_class .item_class_text. You have a font size specified in that class and the margins for paragraphs within divs in that class are not set to zero.

    The text in your pages is controlled by the .entry class, which did not have a font size specified, and the margin on paragraphs in that class is set to zero. That explains the difference!

    Thread Starter J Marlow

    (@j-marlow)

    Makes sense–but try as I might, I do not find that code string in style.css or in any of the theme’s template documents. The only margin-bottom I do find (2 instances, both in style.css) show as 5px rather than 0. The only instance of line-height:16px I find is not accompanied by the text you show above.

    Help?

    Thread Starter J Marlow

    (@j-marlow)

    Got it, got it; I added code in the right spot.

    Thanks!

    Awesome!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Change Text Font Size on Pages?’ is closed to new replies.