• Resolved bluegammon

    (@bluegammon)


    Could you please tell me in which CSS file and at what line number exactly you can change the standard font size of the normal content?
    Font size of 16px really would rise conversions.
    I’m code-literate but very unexperienced in bootstrapping.
    Thanks a lot!

    Regards,
    Rupert

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Brian Harris

    (@zgani)

    Hello Rupert,

    I would not recommend editing any of the theme’s files directly. Best practice is to either use a child theme for major edits or a custom CSS plugin for minor edits.

    Using one of the above options try adding the following CSS code and adjust to suite your needs…

    .hentry {
        font-size: 16px;
    }

    The theme currently uses rem instead of px for the fonts size so you might want to change that to…

    .hentry {
        font-size: 1.6rem;
    }

    if the first code does not do the trick.

    Regards,
    Zulf

    Thread Starter bluegammon

    (@bluegammon)

    Thank you Zulfikar,

    .hentry {
        font-size: 1.8rem;
    }

    with “Theme Junkie Custom CSS”-plugin looks & works like a charm!

    Thanks!
    Rupert

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Standard font size in bootstrap’ is closed to new replies.