Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Need help changing the paragraph font size.

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #41941
    ricksmith
    Participant

    I’m trying to change the font size (and line height) on this [site](http://ministrytips.com “ministry tips”). I’m still learning CSS so I’m probably making a simple mistake, but I can’t seem to get it to change. Would someone mind helping me out?

    Thanks!

    #120719
    TheDoc
    Member

    Generally the formatting of your basic typography should all be placed together. It actually appears that this hasn’t been done at all on this particular site, except for adding the bottom margin.

    If you only want to change the size of the paragraph font of your posts, you can add something like this to the CSS:

    .post-content p, .post-content li, .post-content blockquote {
    font-size: 15px;
    line-height: 1.5;
    }

    #120721
    jurotek
    Participant

    @ricksmith,

    > I’m trying to change the font size (and line height) on this site.

    do you mean your paragraph font size and line height?

    Edit: @TheDoc, got the answer, btw, your paragraph font-size is not set so is inherited from your body font-size of 12px

    #120857
    ricksmith
    Participant

    Tanks so much!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.