Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS how to remove bullets for IE8 Re: how to remove bullets for IE8

#89839
takeiteasy04
Member

Could it be because there’s no closing bracket for “#nav ul”?

Example, change this:

#nav ul {
position: relative;
width: 1100px;
margin: auto;
#nav ul li {
float: left;
padding: 3px 8px;
list-style: none !important;
}

To this:

#nav ul {
position: relative;
width: 1100px;
margin: auto;
}
#nav ul li {
float: left;
padding: 3px 8px;
list-style: none !important;
}