• Resolved mimohoorn

    (@mimohoorn)


    After the last update of Frontier, the fontsize has changed from normal to small.
    I have checked all .css, but am not able to change it back.

    before the update the fontsize was like your own website https://ronangelo.com/frontier/
    I’m using frontier for awhile on my website https://www.rzns.nl/ and like to keep using it, but my visitors are 50+ of age, so fontsize is very important in both frontpage as post/page.

    Please some help?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi ,
    These are very important steps to do:
    put this code to your Child Theme style.css file
    OR
    Install Simple Custom CSS plugin and put the code there.
    If you do not do css this way and put the code to themes style.css, you will loose all changes you made when you update your theme in the future.
    I’m doing this on my browser to find solution.
    It can get to some different behaviour on your site.
    It can happen that ?it is not working.
    Then we have to look further.

    
    h1.entry-title {
        font-size: 24px;
    }
    
    h2.entry-title {
        font-size: 22px;
    }
    
    p {
        font-size: 15px;
    }
    
    or
    
    h1.entry-title {
        font-size: 24px!important;
    }
    
    h2.entry-title {
        font-size: 22px!important;
    }
    
    p {
        font-size: 15px!important;
    }

    Hope this is what you need
    Cheers
    TR

    • This reply was modified 8 years, 1 month ago by Tahoerock.

    …..or try this more general code:

    h1 {font-size: 24px;}
    h2 {font-size: 22px;}
    h3 {font-size: 20px;}
    h4 {font-size: 18px;}
    h5 {font-size: 16px;}
    h6 {font-size: 14px;}
    
    p {
        font-size: 15px;
    }
    
    or
    
    h1 {font-size: 24px!important;}
    h2 {font-size: 22px!important;}
    h3 {font-size: 20px!important;}
    h4 {font-size: 18px!important;}
    h5 {font-size: 16px!important;}
    h6 {font-size: 14px!important;}
    
    p {
        font-size: 15px!important;
    }
    
    

    You can change No to any you like
    Cheers
    TR

    • This reply was modified 8 years, 1 month ago by Tahoerock.
    Thread Starter mimohoorn

    (@mimohoorn)

    Just installed a up-to-date Simple Custum CSS and used the following code:

    h1.entry-title {
        font-size: 24px!important;
    }
    
    h2.entry-title {
        font-size: 22px!important;
    }
    
    p {
        font-size: 15px!important;
    }

    It worked great. Thank You

    Hi,
    Great to hear.
    If you need any further help, let me know.
    Cheers
    TR

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Fontsize changed’ is closed to new replies.