Change color of all call-to-action buttons
-
Hi there!
I would like to change all my call-to-action buttons (on all pages) from white to yellow on my website. How can I do that?
So far, only the call to action buttons on my homepage have been changed.
http://www.montessoricopperfield.com
The blog I need help with is: (visible only to logged in users)
-
-
@testlonghorn, I see you have this in your custom CSS right now
#hero .edit-link a, #hero .call-to-action { background: rgba(32, 0, 0, 0.3); }If you were to replace the color declaration with the following it would go yellow for you.
#hero .edit-link a, #hero .call-to-action { background: rgba(255, 223, 0, 0.8); }
- The topic ‘Change color of all call-to-action buttons’ is closed to new replies.