Hi,
You can change the background of Add to cart button.
For that, please open the following file which is your stylesheet:
https://www.nomadikal.com/wordpress-1/wp-content/uploads/eshop_files/eshop.css
After that, figure out the following lines from that file…
form.eshop input.button {
background:#676B7B;
color:#fff;
border-width:1px;
border-style:solid;
border-color:#9396A4 #555 #555 #9396A4;
}
form.eshop input.button:hover,form.eshop input.button:active,form.eshop input.button:focus {
background:#D1FDA5;
color:#404040;
}
form.eshop input.buttonimg {
background:transparent;
border:none;
}
Please change the ‘background’ and ‘color’ attributes as you required.
For example,
form.eshop input.button:hover,form.eshop input.button:active,form.eshop input.button:focus {
background:#000000;
color:#ffffff;
}
And then save your stylesheet and re-upload it.
I hope it works for you…
Thanks.