I have styled my links to be one color, but I want my titles to be another color. Unfortunately some titles are also links. Is there a way to override the default link color when the link is an h1?

Comments

VM’s picture

per: https://www.drupal.org/node/643758 please edit your opening post and move it to the 'post installation' forum. Thank you.

Anonymous’s picture

Should just be regular CSS you need.

h1 a{
    color:blue;
}
Jaypan’s picture

Edit - removed as I missed the post above that had already said the exact same thing I posted.