Design Cloud - Murphy Bed and Breakfast - change default button color

Hello,

So I have pretty much completed my website but I just ran into a problem. I installed the plugin “popup anything on click” which creates a button that when clicked opens a popup. The problem is that the button takes whatever style is in the theme or style sheet so somehow when I put the shortcode in and the button is created then it shows up the bright pink that was in the bed and breakfast site. I was able to change all other buttons to the appropriate color but since this button is created by the plugin and the color is automatic, I don’t know how to change it. ideas?

Hi Christine,

Thank you for writing in, please add this to Theme Options > CSS

/*initial state*/
.popupaoc-button {
	background-color: green;
	border-radius: 0.25em 0.25em 0.25em 0.25em;
}
/*hover state*/
.popupaoc-button:hover {
	background-color: red;
}

But please keep in mind that we do not really provide support for 3rd party plugins, and by just looking at the class (.popupaoc-button) of that CSS we can see that button is styled by the plugin and not by the Theme.

If you have additional question regarding that plugin, please contact the plugin support or developer or consult their documentation

Thank you for your understanding,

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.