bigdave
Well-Known Member
I want to add a full size background image to a site. Ive used the following CSS3:
CSS
html {
background: url(http://jenserve.com/assuredservices/wp-content/uploads/2013/10/enginea1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
that's worked great but doesn't display in the customers browser (IE (7 or 8 I think)).
CSS Tricks suggested adding the following...
filter: progidXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
-ms-filter: "progidXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
But still no joy. Can anyone offer a solution?
btw, the site is Assured Services Yorkshire -
CSS
html {
background: url(http://jenserve.com/assuredservices/wp-content/uploads/2013/10/enginea1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
that's worked great but doesn't display in the customers browser (IE (7 or 8 I think)).
CSS Tricks suggested adding the following...
filter: progidXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
-ms-filter: "progidXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
But still no joy. Can anyone offer a solution?
btw, the site is Assured Services Yorkshire -