I am using this scheme for desktop background. For the homepage I am using the body tag with the class "gd", so the background is given on the home page. The given css is working fine in FF,Chrome,Safari but I am having problem hacking it for IE.
body{
color:#0066cc;
background:white;
padding-top:20px;
min-width:500px;
height:100%;
}
and this style for the main page
body.gd{
background:#87ceeb url("../images/bg.jpg") bottom center no-repeat !important;
background-color:#87ceeb !important; /*P.S. This line just added for testing */
}
The last line in .gd class is not even showing the background color, it might be possibility that IE is not accepting the body tag with gd class, but in this class how may overcome this behaviour.
P.S. I am using IE9,IE8 and IE7. Three of them are not showing.