IE doesn't like my block, FF and Chrome do

Permalink
I built a custom block that IE doesn't display properly. Firefox and Chrome do. I am using a custom theme I got from the Marketplace called loadfoov2 - could it have something to do with the theme?

 
defunct replied on at Permalink Best Answer Reply
defunct
The developer had used @import to import the stylesheets which IE ignored.

Provided a new header

<?php  defined('C5_EXECUTE') or die(_("Access Denied.")); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<!-- Site Header Content //-->
<link rel="stylesheet" type="text/css" href="<?php echo $this->getStyleSheet('main.css')?>" />
<link rel="stylesheet" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />
<?php  Loader::element('header_required'); ?>
</head>
<body>
<div id="page"><div id="wrap">
  <div id="top">
    <h2><a href="<?php echo DIR_REL?>/" title="Back to main page"><?php echo SITE?></a></h2>
    <div id="menu">
t8shter replied on at Permalink Reply
defunct, thanks yo!

this resolved my issue.