Hi,
I’m working on our website and have used a text module which includes a list. I’ve tried both bullet point and numbered lists but the bullets and numbers never appear.
I even raw edited the html code in advanced view and yet the display shows no numbered lists or bullets.
Please help, thanks.
Hi @DanMan,
Is there a CSS rule attached to the HTML list elements that hide the bullets/numbers? (eg. list-style: none)
best,
Matthieu
matthieu.berard@markentive.com
Here’s the actual code:
<p>Citreno services are best suited for enterprises who are:</p>
<ul style=“list-style-type: square;”>
<li>Existing or potential Chronicle customers with large complex deployments, typically above 1PB/year of data to be processed by Chronicle.</li>
<li>Not simply interested in Chronicle because of price, but want to implement the innovative capabilities of the solution.</li>
<li>Want to implement a Change Management methodology to ensure the success of their product.\ </li>
</ul>
I’ve tried putting in numbering manually AND tried doing it with the widget attached (where it lets you selects bullets/numbers). When I finally publish or preview it…there are no bullets or numbers
Let me know if that answers your question and thank you!
Hi @DanMan,
Can you provide a page with the code in it? That way I can inspect every CSS rules that interact with your HTML.
Best,
Matthieu
matthieu.berard@hotmail.fr
Hello @DanMan
You have a question. I have got an idea. I think this would have been added to style.
Like this,
ul,ol {list-style-type: none;}
So from that comes issue.
You can try this code
<ul style="list-style-type:circle"><li>Coffee</li><li>Tea</li><li>Milk</li></ul><ul style="list-style-type:disc"><li>Coffee</li><li>Tea</li><li>Milk</li></ul><ul style="list-style-type:square"><li>Coffee</li><li>Tea</li><li>Milk</li></ul><ol style="list-style-type:upper-roman"><li>Coffee</li><li>Tea</li><li>Milk</li></ol><ol style="list-style-type:lower-alpha"><li>Coffee</li><li>Tea</li><li>Milk</li></ol>
I hope this can help you.
Hi Dan, I had the same issue and ultimately needed to insert a list style in the HTML (it won’t let me include the brackets…):
ul style=“list-style-type: disc; color: #2f3234;”
Try that!