|
1eagle -> RE: Need help with CSS Please (10/14/2007 1:46:52)
|
Hello Chris, I have looked at your coding and found the culprits causing the image to be pushed down. In your on page styling you have no ending bracket on the body element and you have font-size: 100%; #menu ul li {float: left; width: 100%;} The font-size: 100% is in front of the css command element. This is confusing IE as it does not see the #menu ul li command. Delete this or move it inside the brackets. In addition I believe this styling should be placed inside an IE conditional statement; <!--[if lte IE 6]>
<style type="text/css" media="screen">
body {behavior:url("csshover.htc");}
#menu ul li {float: left; width: 100%;}
#menu ul li a {height: 1%;}
#menu a, #menu h2 {
font: bold 0.7em/1.4em arial, helvetica, sans-serif;
}
</style>
<![endif]-->
|
|
|
|