mediathing:
Ok, I entered this into my css:
#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url(../images/header1.gif)
};
The weird thing is this...that alone has no effect...however when I view the page with firefox and click on "edit css" then and only then does it show. As soon as I close the edit scs box the image disapears???
This is really driving me crazy!
Pete
Your ; needs to be before the } and perhaps it wants parenthesis.
Try this:
#cartSubTotal, h2.centerBoxHeading, .rowOdd {background-image:url("../images/header1.gif");}
Now, do you want that background image for .rowOdd and for #cartSubTotal?