AbanteCart Community

Shopping Cart Operations => Tips and Tricks => Topic started by: satyr616 on January 17, 2013, 03:33:59 AM

Title: Changing background color, template 2.
Post by: satyr616 on January 17, 2013, 03:33:59 AM
Hi,
I'm sure this may sound like a very simple question to many ..

How do you change the background color of your template / storefront?
I'm using the free template 2.

I've tried editing the stylesheet CSS, to make it black using background-color:#000000;  .. but this does not seem to work. Would anyone be able to tell me the exact file location I should go to and the edits that need to be made?

Thanks
Title: Re: Changing background color, template 2.
Post by: abantecart on January 21, 2013, 04:14:26 PM
Additional templates are working as extensions and all files related to template are located in extension or extensions/template2 in case of template 2

You can locate CSS file in: extensions/template2/storefront/view/template2/stylesheet/stylesheet.css

To edit background locate and edit:
Code: [Select]
body {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #000000;
    font: 12px Tahoma,Arial,Helvetica;
    margin: 0;
    padding: 0;
}