I have created an unordered list. I feel the bullets in the unordered list are bothersome, so I want to remove them.
Is it possible to have a list without bullets?<
If you are developing an existing theme, it's possible that the theme has a custom list style.
So if you cant't change the list style using list-style: none;
in ul or li tags, first check with !important
, because maybe some other line of style is overwriting your style. If !important
fixed it, you should find a more specific selector and clear out the !important
.
li {
list-style: none !important;
}
If it's not the case, then check the li:before
. If it contains the content, then do:
li:before {
display: none;
}