dirt29
07-12-2006, 08:54 AM
I'm in need of some help.
Basically, I have my style sheet setup to where I have my main LI elements defined and I also have a set called #left_nav_text defined. I have some small image bullets set in the CSS to display in front of each element in my menu.
The issue I'm running into is that it displays fine in Firefox, but in IE no bullets are being displayed.
I'll give you the code from my style sheet.
li {
float: left;
position: relative;
width: 100px;
text-align: center;
cursor: default;
font-size: 11px;
list-style: none;
} <--Main LI for page
#left_nav_text li {
list-style-image:url(images/bullet.gif);
width: 193px;
text-align: left;
float: left;
} <-- For sub menu
Can someone telling me what I'm doing wrong here or how to fix this for IE?
Basically, I have my style sheet setup to where I have my main LI elements defined and I also have a set called #left_nav_text defined. I have some small image bullets set in the CSS to display in front of each element in my menu.
The issue I'm running into is that it displays fine in Firefox, but in IE no bullets are being displayed.
I'll give you the code from my style sheet.
li {
float: left;
position: relative;
width: 100px;
text-align: center;
cursor: default;
font-size: 11px;
list-style: none;
} <--Main LI for page
#left_nav_text li {
list-style-image:url(images/bullet.gif);
width: 193px;
text-align: left;
float: left;
} <-- For sub menu
Can someone telling me what I'm doing wrong here or how to fix this for IE?