Hello,
I need help in finding the classes to be modified in custom.css to be able to change:
Heading colors: h1, h2, h3, h4 and so on
a:link, a:visited, a:hover, a:active
I want changes to be applied to the whole website.
Thank you,
Daniel
Hello,
I need help in finding the classes to be modified in custom.css to be able to change:
Heading colors: h1, h2, h3, h4 and so on
a:link, a:visited, a:hover, a:active
I want changes to be applied to the whole website.
Thank you,
Daniel
Hi Daniel,
You would need to use these codes:
h1, h2, h3, h4, h5, h6 { /* this sets non-clickable headings */
color: #000000;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { /* this sets clickable headings */
color: #000000;
}
a { color: #000000; }
a:visited { color: #000000; }
a:hover { color: #000000; }
a:active { color: #000000; }
If you want different colors based on if the text is a H1, H2, H3 then you need to do this:
h1 { color: #000000; }
h2 { color: #000000; }
h3 { color: #000000; }
Hope this helps!
Regards,
Mya
Hey Mya,
It really helped, thank you!
Daniel
Hi,
Glad that Mya was able to help you. :)
Cheers,
Ismael
This topic has been closed to new replies.