Bullet icons don't show up on blog posts

Hi there,

For blog posts that we create using the native wordpress editor , the bullets don’t show up on the front-end for example for this post

… the bullets don’t show up here https://prnt.sc/srrvo0

Also can you help me to figure out why the links would show up as a very faint grey? we want the links to show as a bright blue and underlined. How can we fix this?

Hey William,

Your problems come from custom CSS. Please remove the CSS code shown in the screenshots below.

Your custom bullet CSS comes from **X > Theme Options > CSS
image

The gray link color comes from your custom CSS in Appearance > Customize > Additional CSS.

image

After that, set the Global Link color in Theme Options > Typography > Site Links.

image

Our theme does not add an underline for links by design. You’d need to customize the link using CSS. Because this is a minor cosmetic change, I’ll provide the CSS code. Add the code below in Theme Options > CSS.

a {
    text-decoration: underline;
}

Please just note that we do not normally provide custom codes and we do not fix custom code issues. My purpose of providing you the code is to help you get started with coding if options are not available.

Hope that helps and thank you for understanding.

@christian – it worked! Thank you for your help!

@christian thanks so much for these! They all worked!

You’re very welcome, William!

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