Docs: Bullet points are not working in my li list of the Elementor text add-on
Bullet points are not working in my li list of the Elementor text add-on
Updated on October 1, 2024
First of all, let us explain the bullet point issue. Some of our customers want to show bullets in the list and most of them don’t want that. According to the Themeforest standard, we actually show the bullet for the lists but we make different designs for the selected sections if you want to show that need to show that using custom CSS.
And for that please follow the below steps so that you can add bullet points to the lists in the theme.
So for that, you have to add a custom CSS class to the section
and after that, you have to add the CSS. For example, I have added the class name test.
and now use this CSS given below to ( Appearance > Customize > Additional CSS ) field.
.test ul li {
list-style: disc;
}