Tagged: hover links headings, link color, link headings
hi
I don’t know if I’m missing something, but the color settings for links and hover etc in the general settings – are those only for the <paragraph> body links and not for the headings? How do I get the hover/active settings for links in the heading sizes?
I tried with
#top h2:hover {
color: #ff6a00 !important;
}
but that makes all the h2 hovers orange and not just links.
I would like the links to be #ff6a00 with the rollover/click #f59917 in all the text (headings and body).
can you help me understand this?
thanks
Nancy
Hi Munford,
Can you try to use this CSS code instead (so it targets links inside headings):
#top h2 a:hover {
color: #ff6a00 !important;
}
Best regards,
Nikko