I have a website set up with a dark green background in the body with a small image (fake columns) about 20 pixels high that tiles down the page in the container area.
Everything else on the page loads first and while that is happening the green background shows up. The whole page takes 43 seconds to load according to a download site with images taking up 189K. However, I tried removing most of the images and one security logo with no affect -- the green background still loads first.
Here is the CSS:
body {
margin:0;
padding:0;
color:#000;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
background-color:#030; }
#container {
position:relative;
width: 900px;
margin: 0 auto;
border: 1px solid #000000;
min-height: 600px;
background-image: url(assets/parchment_columns2.jpg);
background-repeat: repeat-y; }
Can someone tell me what might be wrong?