Tagged: button color
Hello,
I need you help!
When I add a new button I just can chose between predefinite colors, but I’d like to use alternatively 2 colors of my brand. I can I do?
Thank you very much!
Alice
Hey alididon,
You would have to adjust via css. For example:
.vc_btn3{
background-color: #eb6f78!important;
color: #ffffff!important;
}
Best regards,
Jordan Shannon
Hello Jordan,
Thank you, the problem is that inside the button the words are not white, even after the css add.
You can see the preview in the homepage for example…
Thank you
Alice
Hi,
You currently have this in your css that targets every link text within an article or paragraph including buttons:
.entry-content a {
color: #63b1bc!important;
}
Once this is removed and css is added that targets the actual button link you should be fine. For example:
.vc_btn3-container.vc_btn3-center a{
color:#fff!important;
}
Best regards,
Jordan Shannon