Hi,
I’m trying to use buttons in a row, one with theme color, the other with dark transparent color. But the border and the text color of the transparent button is gray and does not fit with my color scheme, and it does not exist within my color scheme.
The option to choose a custom color, while creating the button, only allows to change the text and background color but does not create a transparent button with border, or better said, there is no option to define a border color.
So where and how do I change the color of the (dark) transparent button?
Thanks for clarifying,
Britta
Hey Britta,
Thank you for using Enfold.
You can use this css code to change the default colors of the dark transparent button.
#top .avia-button.avia-color-dark {
color: #000;
border: 3px solid #000;
color: rgba(0,0,0,0.6);
border-color: rgba(0,0,0,0.6);
background: transparent;
}
Best regards,
Ismael
Thanks Ismael!