Jason Thompson
07-09-2008, 11:56 PM
I've got a set width background png (990px x 2000px), and I'm running into an issue where each of my pages reloads the background image and gives a slight flicker before the image pops in on IE 6 only. (If you can possibly believe that!)
Is there any way to speed up the priority of the background image load in IE6? I'm accomplishing the background image using CSS,
#wrapper {
text-align: left;
margin-left: auto;
margin-right: auto;
padding:0;
width:990px;
height:1035px;
background:url (images/backgroundfull.png) no-repeat;
font:normal .8em Arial, Helvetica, sans-serif;
}
I've got the wrapper div it lives in at the very top of my CSS files, and <div class="wrapper"> is at the top of my HTML.
The background image is 5.18kb so I don't think it's a weight issue.
I'm kind of wondering if it's not because each page is a different height, and the image is just filling to the required needs (which are different from page to page.) Hopefully there's a solution.
Thanks in advance!
Is there any way to speed up the priority of the background image load in IE6? I'm accomplishing the background image using CSS,
#wrapper {
text-align: left;
margin-left: auto;
margin-right: auto;
padding:0;
width:990px;
height:1035px;
background:url (images/backgroundfull.png) no-repeat;
font:normal .8em Arial, Helvetica, sans-serif;
}
I've got the wrapper div it lives in at the very top of my CSS files, and <div class="wrapper"> is at the top of my HTML.
The background image is 5.18kb so I don't think it's a weight issue.
I'm kind of wondering if it's not because each page is a different height, and the image is just filling to the required needs (which are different from page to page.) Hopefully there's a solution.
Thanks in advance!