Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #7219

    Hi again,
    I have bought Catch Everest Pro for my website, http://sercade.org/. I’m trying to make smaller the font size and I can’t.
    I have already done it with the h1 size (as I have read adding #main h1 { font-size: 20px; }), but I need to do the same with:
    – the general content
    – the information about the date and the category where I have published the post
    – the last entries in the principal sidebar widget
    Thanks in advanced and sorry for my English,

    #7245
    Sakin
    Keymaster

    @juanhermoso64: This theme is responsive theme, which mean the font size adjusts as per different screensize such as tablet, ipad, iphone, large desktop screen and small screens.

    So when you edit the font size you need to be careful and edit all the fonts. So, I suggest you not to change the font size. See the style.css and responsive.css for more details about the font size.

    For example if you want reduce the general content font size then you have to add all sets as below, in “Custom CSS” box in Theme Options panel.

    body, button, input, select, textarea { font-size: 14px; }
    @media screen and (min-width: 1190px) { body, button, input, select, textarea { font-size: 16px; } }
    @media screen and (max-width: 1060px) { body, button, input, select, textarea { font-size: 14px; } }
    @media screen and (max-width: 960px) { body, button, input, select, textarea { font-size: 13px; } }
    @media screen and (max-width: 480px) { body, button, input, select, textarea { font-size: 12px; } }

    So, if you really need to adjust then take expert help from CSS developer.

    #7285

    Thank you very much, Sakin. Is the same with the space between the paragraphs or can I make this smaller?

    #7318
    Sakin
    Keymaster

    @juanhermoso64: Yes it’s the same. You need to adjust all the way for responsive as well. This is for font size, width, margins and padding.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘make smaller the font size’ is closed to new replies.