> From: Laura Greenwood
> 
> and for some reason, even if I copy the exact code in my file, it puts
> bullets next to the list item entries even though the CSS
> (list-style-type: none) says NOT to put the bullets..
> 
> I have posted my code at
> http://ciswebs.smc.edu/cis51/greenwood_laura_lee/temp_nov/index4.htm

Laura,

Set the list-style-type on the ul, not the li and the
container div.

---- Your css ----
#navcontainer
{
margin: 0;
padding: 0;
list-style-type: none;
}

#navcontainer li 
{
margin: 0 0 .2em 0; 
padding: 0;
list-style-type: none;
}
----

Should be something like in between those two:
#navcontainer ul
{
list-style-type: none;
}

Remove the list-style-type from the container div and li selectors.

-- 
Peter Williams
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to