Chris Akins wrote:
 > If you look here you'll see that I have graphic separators on my left and
 > right navigation lists which look just like I want.
 > ...
 >> It looks odd that in the left column the bottom line disappears when
 >> mousing over an item.

Chris:

Can't you just simplify the line image so that it can have a transparent 
background?  Then when you apply it, the color you set in addition to 
the img will show through.  Right now you replace the BG on hover with a 
lighter yellow that has no line image.  Maybe something more like this, 
that won't overwrite the BG image on hover but instead just change the 
background color:

    .navLocal li a { background: url(images/localNavSeparator.gif) -18px 
100% no-repeat; }
    .navLocal li a:hover { background-color: #fff; }

As a side note, you may want to try to cut down the number of DIV tags 
you use.  I'm not really sure of the reasoning but you go about 10 DIV 
tags deep before you get to those links and this is an unecisary amount 
of markup.  Perhaps when you get your current bunch of issues lined out 
you can go back through and try to reduce that amount.

-Adam (http://adamducker.com)

______________________________________________________________________
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