Bullet points font size

Hello,

What’s the cleanest way to fix the issue of bigger bullet points than the base text? CSS, theme options?

See image below.

Thanks in advance

Hey @tats86,

Regretfully, there’s no option in our theme to achieve that but to use the Icon List Shortcode if you’re using the WordPress editor or anything outside of our builder. Use circle as the type for the shortcode. The Icon List has an element version so you need to use that if you’re using Cornerstone or the Content Builder. You can use the Big Circle Icon.

If you need a custom size, you need to write your own CSS. I believe this article will help you get started. If you’re unsure how to follow the instruction in the article, you need to consult with a developer.

Hope that helps and thank you for understanding.

I’m not talking about the bullet itself, but hte whole section. The section I showed you is part of a blogpost and the font size of the whole bullet point section is bigger than the base font.

Let me know if my request is clearer.

Hello @tats86,

You are having this issue because you have inserted this custom CSS in your site to adjust the font size in your single posts.

.single-post p {
    font-size: 18px;
}

If you want to include the list, you should update the code and use this:

.single-post p,
.single-post ul,
.single-post ol {
    font-size: 18px;
}

To know more about the list HTML tag, please check this out:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.