Why are the bullet points in the LIST ITEMS not showing up in the Fitnesso template in Webflow?

Published on
September 22, 2023

In the Fitnesso template in Webflow, the bullet points in the list items may not be showing up due to a missing or incorrect CSS styling. Here's what you can do to troubleshoot and fix this issue:

  1. Check the CSS styling: Inspect the list items in the browser developer tools to see if there are any CSS styles applied to them that might be hiding the bullet points. Look for list-style-type property, which should be set to disc or bullet to display the bullet points.

  2. Verify the HTML structure: Ensure that the list items are properly nested within an ordered or unordered list (<ul> or <ol>). It's essential to have this correct structure for the bullet points to display correctly.

  3. Reset CSS: If you've applied any custom CSS or made modifications to the template, there might be conflicting styles that are affecting the bullet points. Consider resetting the CSS to its default state or revert any changes you made to see if the list items start showing the bullet points.

  4. Template-specific code: Since you mentioned the Fitnesso template, it's possible that the template itself has specific CSS styles or custom code that is affecting the display of bullet points. Double-check the template's documentation or support resources to see if there are any specific instructions or troubleshooting steps related to this issue.

  5. Add custom CSS: If none of the above steps resolves the issue, you can try adding custom CSS to explicitly set the list-style-type property for the list items. You can do this by targeting the appropriate CSS selectors for list items and setting the list-style-type property to disc or bullet.

.list-item-selector {  list-style-type: disc; /* or list-style-type: bullet; */}

By following these steps, you should be able to troubleshoot and resolve the issue of bullet points not showing up in the list items of the Fitnesso template in Webflow.

Additional questions:

  1. How do I customize the bullet points in Webflow?
  2. Why are my CSS styles not being applied to list items in Webflow templates?
  3. How can I add a nested list in Webflow?