I have an UL list in which I need to get rid of the bullets. I am sure I need to put this somewhere, list-style: none;
Can you please tell where I would need to insert it into the theme.
I have an UL list in which I need to get rid of the bullets. I am sure I need to put this somewhere, list-style: none;
Can you please tell where I would need to insert it into the theme.
Hi there,
There are different ways,
Add this CSS code in the Global CSS which is in X > Theme Options > CSS.

ul {
list-style: none;
margin: 0;
}
#1 Add a class to the ul
<ul class="no-bullets">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
#2 and add this code in the Global CSS:
ul.no-bullets {
list-style: none;
margin: 0;
}
Hope this helps.
Thanks for the great support, you guys deserve a gold medal for the support you give everyone.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.