Hi all - bullet points are showing up in FF but not IE for this menu - how do I get shot of them? Also, I want a 1px border between the <li>'s - I tried border: 1px solid white; but that put 2px between most of them. Thanks!
hi, by adding this code #menu6 { width: 150px; list-style:none; margin: 0px; } to your existing css you can get rid of the bullet points. thanks, dgmagician
Add this to your document #menu6 li { list-style: none; border-left: 1px solid #000; /*has a 1px border left with color of black */ } The above is just an example.