In your stylesheet, you are referencing your body background image via a remote URL.
Technically, there's no problem with this, but if that other site removes or changes the image, you'll have no background. Better to grab a COPY of that image and store it in:Code:background-image:url(http://i412.photobucket.com/albums/pp209/smooshboosh/cutebg3.png);
includes/templates/CUSTOM/images/cutebg3.png
Then reference it like this:
-----------------------------------------------------Code:background-image:url(../images/cutebg3.png);
To make your body background image visible in the logoWrapper, find the following in your stylesheet.
Directly UNDER that, put:Code:#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage { margin: 0em; padding: 0em; }
(OKAY... small problem... above does not work yet...)Code:#logoWrapper { background: transparent; }



