Hello everyone I could really use some help with this situation as its not really getting any clearer after hrs of trial and error. I am trying to finish up my site design at http://www.randyniles.com/wordpresss and in FF and Safari & Opera its looking okay with a few minor tweaks I was working on before I was to tackle IE. Now I've moved over to creating a stylesheet for IE to correct the issues that I saw when viewing the site on my other computer (PC) with IE installed. I searched and found how to call the sheet in the WP Header and got everything rolling but whats weird is that in some cases when I apply styling say a background color to a div just to see what I'm working with in my default stylesheet I noticed that when viewed in IE the style was applied there too... making me wonder if some of the issues I am having has to do with IE picking up extra styles from another sheet. Is this how its suppose to work? I'm still new to this but weird things like not being able to style h1 tags etc in the IE stylesheet but being able to do it in the default seems odd. Is there a conflict with maybe where I have the information positioned in my header.php file? Here is my file with the coding in it... Thanks in advance if anyone can assist in this.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type');?>; charset=<?php bloginfo('charset');?>"/>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="pingback" href="<?php bloginfo('pingback url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/img/favicon.ico" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen"/>
<!--[if gte !IE]>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/ie.css" />
<![endif]-->
<?php wp_head(); ?>
</head>
<?php echo is_single() ? "<body class='single'>" : "<body>"; ?>