Ok guys sorted out the IE issues
Put a width:270px; in .logo and .desc in the css file
Then in the header.php you will see
<
section id="header-left">
<?php
$picture = logo_header();
if( preg_match("/\b(?
?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i", $picture) ) { ?>
<a id="logo" href="<?php echo osc_base_url(); ?>"><?php echo logo_header(); ?></a>
<?php } else { ?>
<div class="desc"><?php echo osc_page_description(); ?></div> <div class="logo"><a href="<?php echo osc_base_url(); ?>" title="<?php echo osc_page_title(); ?>"><?php echo osc_page_title(); ?></a></div>
<?php } ?>
</
section>
change to
<
div id="header-left">
<?php
$picture = logo_header();
if( preg_match("/\b(?
?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i", $picture) ) { ?>
<a id="logo" href="<?php echo osc_base_url(); ?>"><?php echo logo_header(); ?></a>
<?php } else { ?>
<div class="desc"><?php echo osc_page_description(); ?></div> <div class="logo"><a href="<?php echo osc_base_url(); ?>" title="<?php echo osc_page_title(); ?>"><?php echo osc_page_title(); ?></a></div>
<?php } ?>
</
div>
hope this helps
mark