• I used craftycart theme for my site and I need to know how to change the background image. Any response is appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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;

    Thread Starter CardXpress

    (@oricashop)

    Thank you so much for taking your time to explain this to me.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I change the background image?’ is closed to new replies.