
Can Never Get Multiple Backgrounds Working
I must be doing something wrong, because I can never seem to get this to work with PIE!
If you look at the following page:
http://www.concept.mattpealing.co.uk/bh ... mepage.htmI'm using the following code to specify multiple backgrounds:
Code:
.post-homepage {
background: url('../image/body-01.gif') repeat-x, url('../image/body-02.gif');
-pie-background: url('../image/body-01.gif') repeat-x, url('../image/body-02.gif');
}
And I'm using the js version of PIE, like so:
Code:
$(document).ready(function() {
if (window.PIE) {
$('.button-01, .button-02, #nav .dropdown nav, .banner, #premises img, .post-homepage, .post-internal').each(function() {
PIE.attach(this);
});
}
});
However if you look at the page in the link above, you can see the <body> element is just plain white in IE, whereas it should have 2 background images applied to it.
Can anyone see what I'm doing wrong?