Mostly I was wondering if there was any work on this? I redesigned my old plumbing website and took some ideas from this site http://visitmix.com/ , where they used the body css body tag as the background header with several overlapping designs in the main body of the site - and the html css tag for the background, repeating the image of the rest of the web page. Although this works in firefox and chrome, the background of Internet Explorer is only the background color.
The website I'm working on is here: http://www.plumberkendal.co.uk , which shows what I mean. I tried a lot of things with the width and height of the html css tag, but to no avail .. heres css in question:
html
{
background-image: url("../images/html_bg.png");
background-repeat: repeat;
background-color: #5a84c5;
height: auto;
width: auto;
}
body
{
padding-top: 0px;
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
margin-bottom: 0px;
padding-bottom: 0px;
background-image: url("../images/header_bg.png");
background-repeat: no-repeat;
background-position: center top;
text-align: center;
}
Any help would be greatly appreciated, cross-browser compatibility with css is an area that really confuses me!
source
share