hank you very much for your template.

I would like to change the color of the back ground from the original color to pink like this web:http://www.color-hex.com/color/ec7789
i made some change in the file: \includes\templates\all_business\css\stylesheet
but, it does not work, the color of my website is still original.

my website is:http://www.beauty511.de/catalog/

could you please help me and tell me how to change the color and make it work

thanks a lot,
Leo
You need to edit includes/templates/all_business/css/stylesheet.css line1:

Code:
body {
    background: url("../images/bk.jpg") repeat-x scroll 0 0 #EDF9FB;
    color: #EC7789;
    font-family: verdana,arial,helvetica,sans-serif;
    font-size: 62.5%;
    margin: 0;
}
change this code to:

Code:
body {
    background-color: #your hexidecimal color number;
    color: #EC7789;
    font-family: verdana,arial,helvetica,sans-serif;
    font-size: 62.5%;
    margin: 0;
}

Thanks,

Anne