Re: [css-d] Overriding style sheet for list item

2007-05-28 Thread skip evans
Yes! This did the whole shebang! Much thanks everyone!!! Mauricio Samy Silva wrote: > From: "skip evans" <[EMAIL PROTECTED]> > > ...but it turned off the hover cover from the list. > --- > Hi Skip > Assuming that you get the "class

Re: [css-d] Overriding style sheet for list item

2007-05-28 Thread Mauricio Samy Silva
From: "skip evans" <[EMAIL PROTECTED]> ...but it turned off the hover cover from the list. --- Hi Skip Assuming that you get the "class solution" current item ul li a.current {background: #00;} Now add the the following to you

Re: [css-d] Overriding style sheet for list item

2007-05-28 Thread skip evans
Yup. That did the background properly, but it turned off the hover cover from the list. That's what I'm trying to solve now. Perhaps a class will do that. Thanks! Skip Mauricio Samy Silva wrote: > From: "skip evans" <[EMAIL PROTECTED]> > >> item > -

Re: [css-d] Overriding style sheet for list item

2007-05-28 Thread Mauricio Samy Silva
From: "skip evans" <[EMAIL PROTECTED]> > item --- Hi Skip Put the inline style inside the A tag instead of the LI tag as you did. current item OR Set a class for the different link and define its style in the style sheet: curr

Re: [css-d] Overriding style sheet for list item

2007-05-28 Thread Richard Grevers
On 5/29/07, skip evans <[EMAIL PROTECTED]> wrote: > Hey all, > > I have the following defined to set up an unordered lsit > menu set. > > .menu ul { > width: 100%; >margin-left:0; >padding-left:0; > } > > .menu li { > list-style: none; > } > > .menu li a { >

[css-d] Overriding style sheet for list item

2007-05-28 Thread skip evans
Hey all, I have the following defined to set up an unordered lsit menu set. .menu ul { width: 100%; margin-left:0; padding-left:0; } .menu li { list-style: none; } .menu li a { display: block; text-decoration: none; border-t