The problem is that the content of .header (.logo) has fixed position, this cause .header to collapse... essentially becoming invisible.. and since the content are fixed they too aren't centered.
There are other minor issues,for what you have now.. you could fix it this way:
Code:
<div class="header"><a href="index.html"><img src="images/logo.png" alt="Blender Airshows"/></a><!-- end .header --></div>
in the CSS
get rid of .logo{...}
and replace .header with :
Code:
.header {
background: url(images/logograd.gif) repeat-x #000; height:153px; text-align: center; position: fixed; top:0; left:0; right:0; width: 100%; z-index: 999;
}
you will need these OPTIMIZED images.
logo.pnglogograd.gif
sorry that the attachments will take a bit to clear in the forum.. but I hope this will help.
Bookmarks