circle animation without colors of theme panel
button config: https://imgur.com/VDiJhOJ
button style: https://imgur.com/zVR3fcM
live button: https://imgur.com/XEXmcG7 (https://raulpistorello.com.br/site2019)
Hi,
Yes, it seems to be a mini bug reading on this case! Until we fix this, you need to use the code below and place it in Theme panel -> Cusotm CSS area.
.tds-button8{
background:red!important
}
.tds-button8:before{
background-color: green!important;
}
Hope this helps!
Thanks.
thanks! but works in all buttons. who i custom just header button? its possible? add any code in css?
Hi,
That code can be made more precise, in order to make it apply only in the header. remove the previous one and enter this one
.tdm-header-style-3 .tds-button8{
background:red!important
}
.tdm-header-style-3 .tds-button8:before{
background-color: green!important;
}
We are sorry for this inconvenience, it is now added on our list and it will be fixed.
Thanks
Perfect! One last question. How I change text color of button? Inative and hover
For the text try this – http://prntscr.com/n0ikqn – http://prntscr.com/n0iky9
.tdm-header-style-3 .tds-button8 span {
color: black;
}
.tdm-header-style-3 .tds-button8:hover span {
color: blue;
}
Change the colors as you want.