Body Font

  • Hi, I’ve noticed the font in my blogs is kindof small. https://www.thomsonarchitecture.ca/2019/04/06/air-is-life/
    In fact, if I do an ordered list – the font of the list is larger than the body font. I’d like the body font to be the same size as the default in the ordered list – but when I try adjusting the body font in the Integral Pro General Options area, the font everywhere on the site gets super messed up, kerning and line spacing changes, etc. etc.

    Where is the font size ONLY for the body font controlled in CSS for the Integral Pro site? Thanks in advance. Andy

    Hello Andy,

    Hmm, that’s strange it shouldn’t be doing that if you’re only changing the body font size.

    An alternative is to edit it in the style.css file.

    Go to Appearance > Editor and select the style.css file.

    Go to line 53 and you will find the following code,

    body {
    font-family: Open Sans;
    line-height: 1.6;
    letter-spacing: 0.3px;
    }

    Change it to:

    body {
    font-family: Open Sans;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    }

You must be logged in to reply to this topic.