How to make the bullet points disappear

How do I make the bullt points clear so they don’t appear when the points are centred.

Hello @VelocityWeb,

Thanks for writing in!

Please inspect the text element and under Customize > Setup > Class add a class name to the element. After that add following CSS under X > Theme Options > CSS:

.remove-bullet li {
list-style-type: none;
}

Please make sure to change the class name remove-bullet as per your requirement.

To learn more about List Style Type CSS property, please take a look at following resource.

https://www.w3schools.com/cssref/pr_list-style-type.asp

Thanks.

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