Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing bullets from unordered list

Tags:

html

css

Edit

The html and css for the site I am working on can be found at http://http://new.oranaschool.com/

/Edit

I am trying to remove the bullets showing in the top horizontal menu (Home...Contact). I have tried the advice given in Removing "bullets" from unordered list <ul> but still the bullets persist.

Can someone have a look at the CSS and tell me what I need to add to which CSS class? This has been driving me nuts now for a couple of hours.

like image 375
TheEdge Avatar asked Jul 09 '26 16:07

TheEdge


1 Answers

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;
}
like image 65
Amrinder Singh Avatar answered Jul 12 '26 09:07

Amrinder Singh