Issue: Bullet points not showing when using Divi Theme with SureCart
Explanation:
When using Divi theme with SureCart, some users may encounter anissue where bullet points are not displayed properly. Instead no marker may be shown. This can make your content look messy and unprofessional. Fortunately, this issue can be fixed with a simple custom CSS snippet. Follow the steps below to resolve the bullet point display issue in Divi theme and SureCart.
Quick Solution:
- Go to your WordPress dashboard and navigate to Appearance > Customize.
- Select the Additional CSS option to open the custom CSS area.
- Add the following code snippet to the custom CSS area:
sc-prose ul {
list-style: initial;
margin-left: 14px;
}
- Click Publish to save changes.
Your bullet point display issue with the Divi Theme and SureCart should now be resolved.
In depth solution
In SureCart > Products you can set your product Name and Description.
In the Frontend, it looks like in the image below (no bullets are shown):
Follow the steps bellow to fix it.
Step 1: Go to the left corner of your screen that will show the name of your store, hover over it (1), then click on Theme Customizer (2).
Step 2: Click in Additional CSS (3) in the bottom of the menu.
Step 3: Add the following code bellow and click on the Publish button (4).
sc-prose ul {
list-style: initial;
margin-left: 14px;
}
Step 4: Check your checkout page and now it will be working as expected.