Bullets in bulleted list not showing

Dear Support Forum Members,

We are encountering the odd phenomenon that the bullets in a bulleted list are not showing on the front end.

They bullets are showing whilst editing a module in beaverbuilder but they disappear as soon as we leave the module and they also don’t shown when we save the page.

Does anybody have an idea why this could be ?

This is a sample page, where you should see a bullet in front of the shipping costs for the different regions:
http://www.pairfum.com/delivery-returns-new/

We are currently comparing how tabs would look compared with an accordion.

We look forward to your suggestions.

Many thanks,

Pairfum

in your theme’s style.css file on line 202:

li {
    list-style-type: none;
}

In the child theme, change that to disc, or square, or circle, whichever you prefer.

Dear Rod,

Many thanks for looking into this and for your suggestion.

Where your solution does not yet make sense to me is that we currently already have pages where the bullet points are showing:
http://www.pairfum.com/delivery_and_returns/

It is only when we switch to BeaverBuilder that the bullet points are not visible.

Does your code address this problem ?

Kind regards,

Pairfum

Dear Rod and Forum Members,

I have added a slightly modified version of Rod’s code snippet to our child theme’s style.css sheet:

.fl-builder li {
list-style-type: disc;
}

I happy to report that Rod’s code is working !

Sadly, the bullet points are not very well styled. They should be indented. You can see the pages here :
http://www.pairfum.com/delivery/
http://www.pairfum.com/returns/

Do you have a solution how I could improve the styling for these bullet points ?

Many thanks for your help.

Kind regards,

Pairfum

Dear Forum Members,

It looks like we solved the styling with the following code snippet:

.fl-builder li {
list-style-type: disc;
}

.fl-builder ul {
list-style-position: inside;
padding-left: 30px;
}

Many thanks for your help.

Kind regards,

Pairfum

Hey Rod,

Thanks for jumping in! :slight_smile:

Pairfum,

Glad you figured out the problem! I’d just like to let you know that the styling for those is fully controlled by your theme. Like what Rod said above, your theme assigns no list style for lists in general. :slight_smile:

Ben