
Originally Posted by
remops
Hi need some help.
I would like to change the look and size of the add to cart button
I tried this just to see if it worked on a base color change
span.normal_button.button_in_cart_sm {
background-color: blue;
}
ispan.normal_button.button_in_cart_smHover {
background-color: red;
}
It did not
Thanks in advance
Try this, instead, since the add-to-cart button is a submit-type one:
Code:
input.submit_button.button_in_cart { background-color: blue; }
input.cssButtonHover.button_in_cart { background-color: red; }