Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I think you will have to redeclare your button styles as red, e.g.:
button a {
color: red;
}
so just add that css to my style sheet? That will leave the text in the black (hovered Red) button white?
And then change the global links from white to red? Thank you, sorry if I’m not getting it. Thank you.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Where did you add your original change to create the white text problem?
And oops sorry I meant add this instead:
button a:hover {
color: red;
}
this is the css i used to make the button red on hover
button:hover,
a.button:hover,
input[type=”button”]:hover,
input[type=”reset”]:hover,
input[type=”submit”]:hover {
background: #FB0D0D;
border-color: #ff2828;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Did you put that at the bottom of the theme’s style.css file?
the text already associated with the theme is going me white links, i just happened mohave a dark button with white text. I only want white text in the buttons and not throughout the site i.e.. custom menu in footer.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Okay, I think this is the CSS you want:
button:hover a {
color: #333;
}
okay, placed that in the css. the only way to test if it works i guess is to now change the colors of the links the white links in the footer. Change them to red, and see if the button links remainn white. on hover and not hover. If so i will be all set. so, how do i change links to white, while leaving the button text and hover text in button white.
Thank you