Re: Background image not showng on main page

Originally Posted by
HeyIts007
Any idea why the body background image would not show on the main page, but show on all other pages ? On the main page the background image flashes up briefly, then seems to get overridden with just blank white. However all other product pages show the same background image properly. I gather it's getting overridden somewhere, but not sure where. v 1.3.9h
i.e the body background image
body {
background: url("../images/background2.jpg") repeat scroll 0 0 transparent;
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
/* background-color: #FFFFFF; #F1F3E9; #172317; #031903; #000000; #F1F3E9; #e5edf5; */
}
background: url("../images/background2.jpg") repeat scroll 0 0 transparent;
Should be
background: url('../images/background2.jpg') repeat scroll 0 0 transparent;
And the image is to be in your template image folder
~~~~~~~~~~~~~~~~~~~~~~~~~~
Play with it long enough and you will break it.