Site logo

Archived topic

Paragraph font won't change size

5 replies · Started by Tommy on February 14, 2022

Viewing posts 1–6 of 6

I changed the size of the paragraph font, but on the posts it hasn't changed size unless it's in a bullet point list (see image https://ibb.co/chS5TJ0 ). I also noticed that the post editor paragraph font did increase, but obviously it's the frontend that I want to increase, and I would like all paragraph font paragaphs/bullet points to be the same size. Can someone help, please?

Hi there,

can you share a link to a page on the site where i can see the problem?

hi David,

It's on all post pages but this one is a good example: this page as it has a bullet point list with bigger font. I changed the font size, but the body of posts didn't change, just the bullet lists and backend post editor.

In your sites source code i see this:

<!-- Shortcodes Ultimate custom CSS - start -->
    <style type="text/css">
    .su-box {
        border-style: none;
    }

    .my-custom-divider {
        margin: 0px 0px 80px 0px !important;
    }

    .su-button-center {
        margin-bottom: 15px;
    }

    .su-row {
        margin-top: 30px;
    }

    .su-box-title {
        display: block;
        padding: .5em 1em;
        font-weight: 700;
        font-size: 20px;
        text-align: center;
    }

    p {
        font-size: 16px;
    }
    </style>
    <!-- Shortcodes Ultimate custom CSS - end -->

So thats Shortcodes Ultimate custom CSS - and the last CSS rule is this:

p {
    font-size: 16px;
}

Which is whats overriding the themes body font size.
Can you remove that CSS?

That's done it, thanks for the help!

You're welcome

This archived topic is closed to new replies.