I see that there is :

a {
text-decoration: none;
font-weight: bold;
}
a:link {
color: #39c;
}
a:visited {
color: #369;
}
a:hover {
color: #39c;
text-decoration: underline;

----------------

This is for all the site.

How can I change the color for the header block only?

Thanks

Comments

MeInc’s picture

Find the class or id of the header block and prefix a new css rule for links: .header-block a {color: whatever;}
-Firebug is a great tool for doing this.

castroarguello’s picture

It should be fine with something like this:
#header a { color: green; }

I've added that line to the bottom of the style.css
of a custom theme named mygarland which is a copy of garland
placed in sites/all/themes/mygarland/style.css

e2’s picture

Thank you very much castroarguello !

Works.

** Page layout blocks / IDs
*/
#header, #content {
width: 100%;

}
#header {
background-color: #69c;
}

#header a { color: white; }