I am using the Thesis theme. Everything looks great in firefox, but there is no header in any version of IE. My site is http://idrinkyourwine.com
I am using the Thesis theme. Everything looks great in firefox, but there is no header in any version of IE. My site is http://idrinkyourwine.com
There's an error in the header - an unclosed <a> tag. Try editing header.php and change:
<div id="header">
<a href="<?php bloginfo('url');?>" title="<?php bloginfo('name');?>"
<img src="<?php bloginfo('template_directory'); ?>/custom/images/headersplashwide.jpg" alt="<?php bloginfo('name');?>" height="145" width="950" style="border:3px" />
</a></div>
to
<div id="header">
<a href="<?php bloginfo('url');?>" title="<?php bloginfo('name');?>"><img src="<?php bloginfo('template_directory'); ?>/custom/images/headersplashwide.jpg" alt="<?php bloginfo('name');?>" height="145" width="950" style="border:3px" /></a></div>Thank you, thank you, thank you. This worked perfectly.
You must log in to post.