Hello Ana,
That spot in the customizer changes buttons globally. You can change the hero section buttons back on a page by page basis.
If you only want to change the button in that specific widget, you can do this:
- Go to your theme options page and choose the Advanced tab.
- Scroll down to the Custom CSS box and add this:
.current-series-widget a:hover.button {
color: #cccccc;
background-color: #000000;
}
- Change the #cccccc to the text color you’d like to have and the #000000 to the background color you’d like to have for the hover state.
- Update your settings.
If you need to change the default state, you can do that with this CSS:
.current-series-widget a.button,
.current-series-widget a:visited.button {
color: #ffffff;
background-color: #272727;
}
Let me know if you need help there,
Bill