2

I have tried a few codes to try and remove the bullets from the list style menus on my site, but they are still present.

enter image description here.

How can I get rid of these bullets?

Pugazh
  • 9,453
  • 5
  • 33
  • 54
user6785728
  • 17
  • 1
  • 2

2 Answers2

3

You're looking for

ul{
   list-style: none;
}
Baldráni
  • 5,332
  • 7
  • 51
  • 79
1

ul, li{list-style:none;} should work fine

Pugazh
  • 9,453
  • 5
  • 33
  • 54
ConorJohn
  • 637
  • 2
  • 11
  • 24