Forum Moderators: not2easy
Well, i need to generate an horizontal menu, where each element is prefixed by an image.
So i thought to approach the problem in this way:
....
<ul>
<li><a href="#">First item</a></li>
<li><a href="#">Second item</a></li>
<li><a href="#">and so on</a></li>
</ul>
....
Here is the attached stylesheet:
li {
display: inline;
list-style-image: url(images/blue.gif);
margin: 0px 20px; 0px; 20px;
}
Now: why 'display: inline' applied to li makes the list marker(thus, the image blue.gif) disappear?
I need a way to solve this, even if sincerely i think that face the problem in this manner would be clean and straightforward.
Anyone would help please?
Thanks
Paolo Dina