• Another newbie question – I hope you will bear with me! I am using the Corporate Gray theme, and am trying to increase the font size for posts. I’ve looked at several tutorials trying to figure this out on my own, but I can’t find the particular piece of code to edit. Nothing that I see resembles examples of syntax that I have seen in tutorials, so I am not sure which value to change, or how to do it. Can someone help? Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • here is a general approach:
    get your html code from the browser – ‘View -> Source’ in IE, or ‘View -> Page Source’ in Firefox.
    then search for the text that appears in your post(s).
    just before the text, note the tags (the things in pointed brackets, for instance <div ..>.)
    check what stands insie the tags, ie. ‘class=”entry”‘ or ‘id=”content”‘ or something like these.
    you can then look for these in the style sheet:
    class="entry'will show in the style sheet as .entry
    id="content" will show as #content
    there you shold also find within these brackets { …. } your font-size: or whatever you want to change.
    if it is not in there, you can simply add it, followed by a semicolon, example:
    .entry { font-size:14px; }

    it is also easier to help, if you post a link to your site.

    Thread Starter ppopat

    (@ppopat)

    Thanks so much alchymyth! This helps a ton. I’ll give it a try.

    For the record, the site is https://www.tuerckfoundation.org/asylum [not sure how to indicate a site properly here – sorry if I violated etiquette]. Now that I look at it the way you suggested, I think I can see how to do it. Stay tuned.

    Thread Starter ppopat

    (@ppopat)

    This worked. Thanks so much for your help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Font size in Corporate Gray theme’ is closed to new replies.