I need to change the callout button colour on my page symphonova.com
How can i do this?
I need to change the callout button colour on my page symphonova.com
How can i do this?
Hi!
Add following code to css/custom.css and change the color value:
.callout .big_button {
background-color: #333333;
}
Best regards,
Peter
How do you change the hover/active states colour of the button as well. Currently it goes from my colour back to the standard grey
Hi!
Add the following code to css/custom.css and change the color value:
.callout .big_button:hover {
background-color: #444;
}
Best regards,
Kriesi
Also, add an !important to both. So...
.callout .big_button {
background-color: #333333 !important;
}
.callout .big_button:hover {
background-color: #444 !important;
}
Otherwise (for me at least) it doesn't work.
This topic has been closed to new replies.