Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #54015
    Carbo
    Participant

    The Pro Version of Catch Base says that you can change the fonts. Will it also allow me to change the font sizes.

    I need the font size of the post content to be slightly larger, the various heading sizes need to be smaller and the widget titles also need to be smaller.

    Also, willit allow any of the line spacing †o be altered?

    Thank you

    #54091
    Sakin
    Keymaster

    @Carbo: It have option to change the font family not the font size. For font size we can use the Custom CSS to change it. For example, you can change the font size in following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 990px) {
        /* Content/default body font size */
        body, button, input, select, textarea { 
            font-size: 15px; 
        }
        /* H1 to h6 heading font size */
        h1 {
    	font-size: 30px;
        }
        h2 {
    	font-size: 28px;
        }
        h3 {
    	font-size: 24px;
        }
        h4 {
    	font-size: 20px;
        }
        h5 {
    	font-size: 18px;
        }
        h6 {
    	font-size: 16px;
        }
        /* Page title, promotion headline, featured content headline sizes */
        .entry-title, #promotion-message h2, #featured-content #featured-heading {
            font-size: 30px;
        }
    }
    #54736
    Justyna
    Member

    Hi,
    I try to change font size with your css, but it works only for content, not for H1-H6 or page title. Could you please help me? http://www.fire-watch.pl

    Thank you

    #54751
    Sakin
    Keymaster

    @Justyna: You are using Catch Everest Pro theme and posting it in Catch Base Theme Support forum that is why the above css is not working. For Catch Everest Pro theme support forum, please use http://catchthemes.com/support-forum/forum/catch-everest-pro-premium/

    For now, I will answer it here. For Catch Everest Pro font size you can use the following css:

    @media screen and (min-width: 990px) {
        /* Content/default body font size */
        body, button, input, select, textarea { 
            font-size: 15px; 
        }
        /* H1 to h6 heading font size */
        .entry-content h1 {
    	font-size: 30px;
        }
        .entry-content h2 {
    	font-size: 28px;
        }
        .entry-content h3 {
    	font-size: 24px;
        }
        .entry-content h4 {
    	font-size: 20px;
        }
        .entry-content h5 {
    	font-size: 18px;
        }
        .entry-content h6 {
    	font-size: 16px;
        }
        /* Page title, promotion headline, featured content headline sizes */
        .entry-title, #promotion-message h2, #featured-content #featured-heading {
            font-size: 30px;
        }
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Changing Font Sizes’ is closed to new replies.