HI
i have two menu, one on the top and one on the left, they are generated from an outside php file that calls the "list-nav" id style, the problem is that i need to see an image as list-style-image in the left menu and the image is hidden, this is the style of the top menu:

/****************************toptmenu********************************************/
#menu{
margin-bottom:12px;
margin-top:20px;
text-align:right;
}

ul#list-nav {
/*list-style:none;*/
direction:ltr;
font-size:10.5px;
font-family:Helvetica Light;
}

ul#list-nav li {
display:inline;
border-right:1px #575354 solid;
padding:0 35px 0 35px;
}

ul#list-nav li a {
text-decoration:none;
font-weight:normal;
color:#000000;
text-align:center;
}

ul#list-nav li a:hover {
color:#eb0089;
}

ul#list-nav li.hebrew{padding-right:0; border-right:0}

And this is the style of the left menu:

/********************************leftmenu************************************************/
#logo{
margin-top:26px;
width:242px;
height:118px;
border-top:1px #8a8889 solid;
border-bottom:2px #000 solid;
background:transparent url("../images/logo.png") no-repeat 0 0;
margin-bottom:30px;
}

span#logospan 
{ 
visibility: hidden;
width:242px;
height:118px;
}

#left{float:left; width:242px; height:100%; position:absolute}

#imageMenu
{
background:transparent url("../images/imageMenu.gif") no-repeat 0 0;
width:707px;
height:118px;
border-top:1px #8a8889 solid;
border-bottom:2px #000 solid;
margin-bottom:33px;
}

#leftMenu ul#list-nav, #submenu ul#list-nav{
list-style: url("../images/plus.png") !important;
font-family:Helvetica Medium;
font-size:11px;
font-style:normal;
margin-left:0;
padding-left:0;
}

#leftMenu ul#list-nav li, #submenu ul#list-nav li{
display:block;
border-right:0 #575354 solid;
margin-bottom:14px;
margin-left:20px;
padding-left:0;
}
#submenu ul#list-nav{
Margin-top:30px;
font-family:Helvetica Light !important;
}
div.hr{
height:15px;
background: url("../images/borderB.png") repeat-x bottom;
}

div.hr hr {
  display: none;
}

#submenus{margin-top:20px}

why i can't see the bullet: "list-style: url("../images/plus.png") !important;"
thanks

Recommended Answers

All 3 Replies

The only thing that comes to mind is one of two things. 1) The image's location is different than that referenced in the code or 2) The !Important is throwing off the code for some reason. You might check to make sure you have your syntax correct for the list style image. The only other thing that stood out to me (and I'm not sure if this is an actual issue) is the code on line 19.

19.#left{float:left; width:242px; height:100%; position:absolute}

The missing semi-colon at the end of the line could cause an issue but small things like that always throw me off.

I checked but it still doesn't work

line 19 float:left AND position:absolute ???

There's no need for a semi-colon at the end of the last style rule in any css declaration, but having one avoids problems later if you add another rule, as then you might forget to add it.

And solving this would be an awful lot easier if we could see the site and thus the problem in situ and all the code.
Post the url

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.