Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #17227
    OtaKii
    Member

    Hello,

    Thanks for a great theme, I was wondering is it possible to change the font size & style for posts/pages, and also change the line spacing for those?

    I don’t have a public blog yet, I’m working on a local installation for now so no link.

    #17241
    Sakin
    Keymaster

    @OtaKii: Font size and style option is only there in Catch Box Pro version.
    For free version, I need to check in your site URL and then you need to explain exactly what you need to do it. Then I can check in the css.

    Further, you can hire developer if it’s difficult for you.

    #17844
    OtaKii
    Member

    Hello again & thanks for the answer.

    My site is http://www.cdtenerife.info/ and I’m looking at changing both the font size to something smaller and decreasing the space between lines of text. I think the latter is 1,5 or similar now, would like closer to 1 if possible.

    Also is it possible to change the font type to something different. Not sure what it is now but looks a bit stale for my liking.

    #17861
    Sakin
    Keymaster

    @OtaKii: For line height you can add the following CSS in “Appearnace => Theme Options => Custom CSS” box.
    #main { line-height: 1em; }

    But for font-family, if you are using web safe font then it’s fine otherwise either you need to upgrade to pro version or search for font plugins.

    body, input, textarea {
        font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    }
    #17864
    OtaKii
    Member

    Thanks Sakin for those, will def test them out

    #17903
    OtaKii
    Member

    Hello once again,

    Is it possible to change the font size as well, especially reducing the size?

    #17932
    Sakin
    Keymaster

    @OtaKii: I don’t recommend changing the font size as if you change font size for large screen then you need to change it for mobile devices as well. Yes, you can add only for screen size larger then 960px as below in your “Appearnace => Theme Options => Custom CSS” box.

    /* For Screen Larger then 960px */
    @media screen and (min-width: 961px) {
    body, input, textarea { font-size: 15px; }
    }
    #17946
    OtaKii
    Member

    Thanks again Sakin for that one.

    One more question if you don’t mind; is it possible to change the background color for the text area in a post? It’s all white now, same with the widgets’ area, the background is white there too.

    #17951
    Sakin
    Keymaster

    @OtaKii: You can change the background color as per your need and then add the following CSS in “Appearnace => Theme Options => Custom CSS” box.
    .hentry { background-color: #fff; }

    #17994
    OtaKii
    Member

    Thanks again for your reply and help Sakin, great service!

    #18003
    Sakin
    Keymaster

    @OtaKii: Welcome and thanks for your appreciation.

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Fonts & Line spacing’ is closed to new replies.