does anyone how I can change the background colour of the footer and the 'add to cart' button?
Announcement
Collapse
No announcement yet.
background colours
Collapse
X
-
Nells
Background of the Footer: Depends on the template you are using. Different templates use different css rules for the footer
Add To Cart Button are pretty general for the rules:
Add these rules to your active css file for home/category page add to cart button (change hex color accordingly to suit your needs):
.product-item .action .btn {
background: #333 none repeat scroll 0 0;
}
.product-item .action .btn_over {
background: #000 none repeat scroll 0 0;
}
Add these rules to your active css file for product page add to cart button (change hex color accordingly to suit your needs):
.addToCartBlock button {
background: #333 none repeat scroll 0 0;
}
.addToCartBlock button:hover {
background: #000 none repeat scroll 0 0;
}
After adding the rules be sure to save, clear cache and refresh
-
Thanks for the help with the button.
regarding the footer , I am using the empress theme (website is www.shoomania.com)
Comment
Comment