Link color within page

I am trying to make the link at the top in red all white, but there’s a code that is changing the color to black. There seems to be a contrasting link code that is making it black. How can I change it?

https://umanityx.com/workshop-1-registration/

Hi Bryan,

Thank you for writing in, you mean the “REGISTER HERE!” link? To change that, please add this to Theme Options > CSS

h1 a {
	color: white;
}

If you change your h1 to a different heading (e.g. h2, h3, etc), then you need to update that CSS code as well.

Hope it helps,
Cheers!

I’m having an issue between changing the links on the page to black, while leaving the social buttons at the bottom of the homepage white. Is there CSS code to change the social buttons to white?

Hi Bryan,

Please try this code:

.x-colophon.bottom .x-social-global a {
    color: #fff;
}

Hope this helps.

Great, thank you. The footer menu is still black. How can I change that to white?

Hey Bryan,

Please update the code to:

.x-colophon.bottom .x-nav li a,
.x-colophon.bottom .x-social-global a {
    color: #fff;
}

.x-colophon.bottom .x-nav li a:hover,
.x-colophon.bottom .x-social-global a:hover {
    color: #fad441;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.