Changing Specific Button Colors

There are a few places on my site that I have a button that blends in with the background. Is there a way to change the color of specific buttons?

For example, on the page below, the button below “Online Giving” is white, I’d like to make that button black. Is this possible?

http://dallas170.arvixeshared.com/~bburwell/mydummydomain.com/?page_id=159

Hello @brockburwell,

Thanks for asking. :slight_smile:

Ohh yes, absolutely you can change the button color individually. To do that you can add a class in button element and then apply necessary CSS or directly add inline CSS. For ex, let say you gave a class name button-custom. To change the color, you can add following CSS:

.button-custom {background-color: #ddd; color: #000;}

To add inline CSS, you can add following code:

color: #000; background-color: #ededed;

You can also take a look at the screencast wherein I have shown both the methods. https://screencast.com/t/enZqlxB4Z31d

Thanks.

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