Colin Mcgarry wrote:
> I'm sure my problem is ridiculously simple but it's driving me mad.
>
> Firefox tells me my link is
> div#contenu>liste-article>ul .somm-titre>li>h3.titre>a
>
> What is the syntax for setting the color of the link.
> i've tried
>
> a.h3.somm-titre{
> color: #eef;
> }
>
>
> a.somm-titre{
> color: #eef;
> }
>   a.h3.titre{
> color/#eef;
> }
>
> cpmac
>
> but it stays black . The general "a" attribute is at the top of the css 
> file.
>
>
>   
Colin:

Can you show an example of the HTML? Make sure you apply the CSS to the 
tags in the right order.  If the HTML is the way I think it might be 
then maybe something like this will work better:

.some-titre a {

color: #eef;

}

-Adam Ducker

      


______________________________________________________________________
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