You can remove bullets by using list-style-type to none on the CSS for the <ul> element, for example:
ul
{
list-style-type: none;
}
Answer from Amrinder Singh on Stack OverflowYou can remove bullets by using list-style-type to none on the CSS for the <ul> element, for example:
ul
{
list-style-type: none;
}
You can try this
div.ui-menu li {
list-style: none;
}
ul {
list-style-type: none;
padding: 0px;
margin: 0px;
}
li {
display: inline;
padding-left: 14px;
}
<div class="ui-menu">
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</div>
How do I remove bullet points from <ul> and <li>
Foundation Theme - How Do I Make An Unordered List With No Bullets?
Remove bullets from unordered list using CSS
html - I need an unordered list without any bullets - Stack Overflow
Videos
Hi, I have been trying to figure out how to remove the bullet points which you can see in the tabs and the corresponding text. I have tried setting list-style:none but it doesn't work.
Page Link
You can remove bullets by setting the list-style-type to none on the CSS for the parent element (typically a <ul>), for example:
ul {
list-style-type: none;
}
You might also want to add padding: 0 and margin: 0 to that if you want to remove indentation as well.
See Listutorial for a great walkthrough of list formatting techniques.
If you're using Bootstrap, it has an "unstyled" class:
Remove the default list-style and left padding on list items (immediate children only).
Bootstrap 2:
<ul class="unstyled">
<li>...</li>
</ul>
http://twitter.github.io/bootstrap/base-css.html#typography
Bootstrap 3, 4, and 5:
<ul class="list-unstyled">
<li>...</li>
</ul>
Bootstrap 3: http://getbootstrap.com/css/#type-lists
Bootstrap 4: https://getbootstrap.com/docs/4.3/content/typography/#unstyled
Bootstrap 5: https://getbootstrap.com/docs/5.0/content/typography/#unstyled