Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
I need to change link color and hover link color on links I inserted in the header widget with layout builder.
I have tried everything including what was suggested in the following link with no success:
To change link colors I tried adding the following to Custom CSS:
header#masthead hgroup #header-sidebar a {
color: #499e1c;
}
An then I tried this:
#masthead .hgroup a: {
color: #499e1c;
}
Neither seems to override the settings in >Customize>Theme Design>General>Content Link Color or COntent Link Hover Color
————-
SOLVED
I used the !important rule to make it work. Now looks like this:
/*Add color & hover color on header links */
#masthead .hgroup a {
color: black !important;
}
#masthead .hgroup a:hover {
color: gray !important;
}