CSS customization

  • Unknown's avatar

    I am using the Academica theme and am looking for help in a couple of areas:

    First I received code on how the increase the font size of article titles on the front page (thanks a lot), but now I would like to receive help in customizing/increasing the size of the article titles on other pages. Note I experimented with the code I received, but couldn’t increase the title size. Here is a sample of the pages I would like to have the Article title size increase on:

    http://opentheword.org/2013/08/
    http://opentheword.org/category/news/religious/

    Secondly, I would like to know how to increase the font size of the body text of the articles. I am finding the text a bit difficult to read, maybe it’s my bifocals.

    Any help on those familiar with CSS would be very much appreciated.

    Thanks

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Change the following code you have in your CSS

    #column-content.posts h2 {
        font-size: 23px;
    }

    so that it looks like this:

    .posts .post h2, .posts .page h2 {
        font-size: 23px;
    }
  • Unknown's avatar

    Thanks very much Sacredpath that did the job perfectly. Really appreciate this. Wish I knew how to do this lol.

    Hate to be a bother, but is there away to increase the size of the body text?

  • Unknown's avatar

    Sorry, I forgot to include that. Add the following and adjust as desired.

    .posts .post, .posts .page {
    font-size: 12px;
    }
  • The topic ‘CSS customization’ is closed to new replies.