Also, on the con08styles.css, you have this declaration:
.sidebar-winner > h5 > a:link, a:visited, a:hover, a:active

{
color: #ffffff;
background-color: #831c00;
}
Followed by this one:

h1, h2, h3, h4, h5, h6 > a:link, a:visited, a:hover, a:active
{
color: #831c00;
background-color: #ffffff;

} 

For the first one, what would be affected is this:
.sidebar-winner > h5 > a:link,
And then, a:visited, a:hover, and a:active.

In other words, if you want to apply those styles only the child links of an
h5 which is a child of the class .sidebar-winner, you would need to add the
first part to each one, like so:
.sidebar-winner > h5 > a:link,
.sidebar-winner > h5 > a:visited,
.sidebar-winner > h5 > a:hover,
.sidebar-winner > h5 > a:active {declarations here}

For the second set of links, the styles would only apply to a:link that was
a child of h6, and then to all a:visited, a:hover, a:active links. (And also
to all h1 through h5 headings).

You have inheritance issues being resolved differently by different
browsers, it seems (I'm not seeing the inverse links, but I can see that for
.sidebar-winner > h5 > a:link, that's how you have it coded.


On 8/27/08 11:42 AM, "Maggie Wolfe" <[EMAIL PROTECTED]> wrote:

> On asbpe_main_styles.css, for a:link you have the color set to #003399, which
> is exactly the blue color you are getting.  I'm not getting the inverse colors
> on visited links, so maybe you fixed it.
> 
> 
> On 8/27/08 10:35 AM, "[EMAIL PROTECTED]"
> <[EMAIL PROTECTED]> wrote:
> 
>> Date: Tue, 26 Aug 2008 10:54:39 -0400
>> From: Martha Spizziri <[EMAIL PROTECTED]>
>> Subject: [css-d] What's wrong with these links?
>> To: css-d@lists.css-discuss.org
>> Message-ID: <[EMAIL PROTECTED]>
>> Content-Type: text/plain; charset=US-ASCII; format=flowed
>> 
>> Maybe I'm having a brain cramp, but I've looked at this page and its
>> style sheets
>> 
>> http://www.asbpe.org/contest/2008/win08multi.htm
>> 
>> several times and can't figure out why
>> 
>> 1) Unvisited links in the table show up in blue, not the brick-red color
>> 
>> and
>> 
>> 2) Visited links show up reversed -- white type on reddish background.
>> 
>> Any help will be appreciated.
>> 
>> Thanks.


______________________________________________________________________
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