Tagged: button
In avia editor my default button looks like –
But on site it looks this way –
No custom css styles used. What can be the problem?
Hi Vorug!
The css for the buttons was changed to better reflect the overall theme style but you can re-add in the gradient style shown in the editor view if you’d like. Kriesi explained the change and links to the old css here: https://kriesi.at/support/topic/no-gradient-in-buttons-v-2-4/#post-178780
You would just add that to your custom.css file or Quick CSS.
Cheers!
Devin
Hi,
I’ve added this css to my quick css and button on site changed to this one – . It is a bit cooler but not as cool as in avia. Also I’ve noticed that there is no gradient in css you provided, so may be there is another version?
Hi!
Please download this file then place it on images/layout folder:
http://www.mediafire.com/view/h5m368lt4m9j6d0/bg-button.png
Add this on Quick CSS:
body div .avia-button{
background-image: url("../images/layout/bg-button.png");
}
Cheers!
Ismael
I had this image in that folder and this code in the css Devin provided. The problem was that this url “../images/layout/bg-button.png” is not leading to the right place. When I made my own folder and changed this url to url(“/1/bg-button.png”) everything start looking the same way as in avia.
Thanks for help!