I want to change the color of the subscribe button in the sidebar widget but can't find the the option to do so. could you please help with the detailed steps on how to do it?
I see that the hover action on load more posts button is just to change the bored color of the button, can you please share the code to change the button background color on hover?
I want to change the color of the subscribe button in the sidebar widget but can't find the the option to do so. could you please help with the detailed steps on how to do it?
Hi,
Please try add more this code to Customize > Custom CSS to do that:
.widget input[type="submit"], .widget button[type="submit"]{ background: #ea9502; color: #ffffff; }Best Regards,
PenciDesign
Thank you!
I see that the hover action on load more posts button is just to change the bored color of the button, can you please share the code to change the button background color on hover?
Hi,
1/ For load more posts button:
.penci-pagination.penci-ajax-more a.penci-ajax-more-button:hover{ background-color: #ff0000; color: #ff0000; border: 1px solid #ff0000; }2/ For button subscribe on sidebar:
.widget input[type="submit"]:hover, .widget button[type="submit"]:hover{ background: #ff0000; color: #ffffff; }Change color codes above to color code as you want.
Best Regards,
PenciDesign