I used craftycart theme for my site and I need to know how to change the background image. Any response is appreciated.
I used craftycart theme for my site and I need to know how to change the background image. Any response is appreciated.
FInd this section is your css file:
* LAYOUT
========================================== */
body {
font-size: 70%;
line-height: 150%;
background: url('images/bg-page.png') repeat-x left top;
background-color: #FCF1D3;
}
and replace 'images/bg-page.png' with the location of your new background image. Delete 'repeat-x left top' if you do not want your image repeated along the top of the x-axis. If you do not want the image to repeat at all, in the following line, insert:
background-repeat: no-repeat;
Thank you so much for taking your time to explain this to me.
You must log in to post.