What you can do is give each LI element a background image, with that image being the desired icon. Something like:
Code:
<li style="background:urltrader/navimages/folder.gif) center left no-repeat"><a href="http://google.com">Image CSS</a></li>
<li style="background:urltrader/navimages/folder2.gif) center left no-repeat"><a href="http://yahoo.com">Background CSS</a></li>
"
"
Once you've done that, you'll find you need to increase the left padding of each link, so the icon doesn't overlap the link text. Inside the CSS for the menu, the line in red would be what you'd change:
Code:
.glossymenu div.submenu ul li a{
display: block;
font: normal 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
color: black;
text-decoration: none;
padding: 2px 0;
padding-left: 25px;
}
Bookmarks