Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #362133

    Hi Team,

    I need help with changing the font size of my blog articles. I want a bigger font-size for my blog articles – can you please tell me where I can change this or what I have to do to make the fontsize bigger.

    There is no option in the article writing panel/toolboard for chosing a bigger font size – so please give me some informations or a tutorial about it.

    And if possible I want to have this bigger font size only for my blog articles not for the rest of the content.

    And I have never worked with css or so on – so I need an easy solution.

    Thanks in advance,

    Martina

    #362136

    Hi martinafuchs!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

     .entry-content p {
    font-size: 16px;
    }
    

    Regards,
    Yigit

    #362772

    Hi Yigit,

    do I put it under General Styling “Main-Content” and does that lead to the fact, that only my blogpost are in a bigger font size (is what I want) ?

    Thankx

    Martina

    #362837

    Hi!

    Thank you for coming back.

    To limit the changes to blog only you have to write the following code and change the value:

    
    .blog .entry-content p {
    font-size: 16px;
    }
    
    

    In Enfold -> General Styling at the bottom you find the input field Quick CSS. Put the text above in that field.

    Cheers!
    Günter

    #433319

    Hi,

    Sorry for earwigging but I am having the same problem. I put the code suggested in but the font on the blog is still miniscule. I have other code in the Quick CSS panel, I’m wondering if tagging this onto the end is why it isn’t working?

    This is the code we are running and the font on the blog stays the same:

    body {
    font-size: 40px;
    }

    .main_menu ul:first-child > li > a { font-size: 30px; color: white!important; background-color: #4f0235; }
    .main_menu ul:first-child > li > a:hover { color: orange!important; }
    .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a { color: #b3a6b3!important; }

    .main_menu ul:first-child > li > a { font-family: ‘Arial’, }

    .blog .entry-content p { font-size: 30px; }

    #433904

    Hey!

    You could try with !important after your CSS statements:

    body {
    font-size: 40px !important;
    }

    40px seems a bit big though but ok. If you should have further problems please provide us with a link to the site in question so that we can take a closer look.

    Best regards,
    Rikard

    #472691

    Hello

    I’ve tried the aforementioned fixes…and my blog font is still 12px (shooting for 16px)

    .blog .entry-content p {
    font-size: 16px !important;
    }

    Any ideas?

    #472749

    Hi!

    Please open a new ticket, and we would be more than happy to assist you there.
    Sorry for that!

    Cheers!
    Basilis

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘How to change the blog font size’ is closed to new replies.