Trying to create a forum skin that uses multiple background images to have a fluid layout to the body.
I used the following code for this in the vbulletin.css under the .body_wrapper
Code:
background: url(images/bodytop2.png) center top no-repeat,
url(images/bodybottom2.png) center bottom no-repeat,
url(images/bodymiddle2.png) center center repeat-y;
and it works in every browser except for IE.
I tried just adding a color to the wrapper, so there would be a base color with images overlaying, but using "background-color" doesn't work.
anyone have any idea how I can get this to work for IE?