Home › Forums › CSS › how to remove bullets for IE8 › Re: how to remove bullets for IE8
October 28, 2011 at 12:01 pm
#89839
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;
}