Link to home
Start Free TrialLog in
Avatar of Kimmy100700
Kimmy100700

asked on

Custom bullet not showing in unordered list from external css sheet

My custom bullet is not appearing in my unordered list on my web page.  I am using a separate css styles sheet and everything else on the sheet is working on my web page.
/* side navigation rules */	
#nav-menu ul
{list-style-type: square;
list-style-image: url(/images/arrowbullet.gif);
padding: 0;
margin: 0;}
 
#nav-menu li
{float: left;
list-style-type: square;
list-style-image: url(images/arrowbullet.gif);
margin: .2em .2em .2em 0.15em;}
 
#nav-menu li a
{background: url(background.gif) #fff bottom left repeat-x;
height: 2em;
line-height: 2em;
float: left;
width: 13em;
display: block;
border-bottom: 1px dotted #dcdce9;
color: #0d2474;
text-decoration: none;
text-align: left;}
 
/* Hide from IE5-Mac \*/
#nav-menu li a
{float: none}
/* End hide */
 
#nav-menu
{width:40em}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of David S.
David S.
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial