Custom button colours

Posted in: Newspaper
Post count: 33

Hi,

I’ve read https://forum.tagdiv.com/increase-users-engagement-add-custom-buttons-posts/. However, the colours don’t tie up with my colour scheme.

Am I able to set custom colours for the buttons?

Cheer

TOm

Post count: 7909

Hi,

The buttons are created based on Visual Composer buttons and only those colors are available.
To have a custom color you could use custom css. For example you add the button’s shortcode in your post – http://screencast.com/t/anhIeS86eTkt and then you use this custom css to add your own background and text colors – http://screencast.com/t/kwSPKbjf5Eu

.vc_btn-custom {
background-color: #417096 !important;
color: #29c5f6 !important;
}

Thanks!

Post count: 33

Hi thanks. I’ve got my custom button colour now, but I also want it to have the hover effect when the mouse goes over it. How would I do this? Using the default square button type.

Thanks

Tom

Post count: 7909

Hi,

Try this custom css(remove the previous code) – http://screencast.com/t/PIqIvzOXjQaj

.vc_btn-custom {
background-color: #417096;
color: #29c5f6;
}
.vc_btn-custom:hover {
background-color: red;
color: green;
}

Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.