Rich Wendrock Forum wrote:
> I am trying to format the links in a menu.  They look the way I want them to
> Firefox but do not look right in IE 8.
>
>  
>
> Can you tell me why it is not working in IE?
>
>   

Can you provide a clickable link to the page?  And state the version(s) 
of IE give you difficulty? Generally, good idea to zero the padding 
margin/padding on the ul, and use list-style-position: inside;

If not, try:

CSS:
ul {margin: 0; padding: 0;}
ul li {
list-style-type: square;
list-style-position: inside;
}
ul li a {
font-weight: bold;
text-decoration: none;
color: black;
}
ul li a:hover  {
color: #cc0000;
}
HTML:
<ul>
<li><a href="#">list item</a></li>
<li><a href="#">list item</a></li>
<li><a href="#">list item</a></li>
<li><a href="#">list item</a></li>
<li><a href="#">list item</a></li>
</ul>

And/or see this for general formatting of various types of lists: 
<http://css.maxdesign.com.au/listamatic/>

Best,
~d

______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to