Yes, that would explain the duplicate <head> sections I was seeing in the rendered pages.
As for the <p align="center" thing.. it shows up here:
Quote:
<body onload="dynAnimation()">
<p align="center">
<img border="0" src="http://www.microeffects.com/new/i/menu/ends_01.png" width="173" height="35"><a onmouseover="var img=document['fpAnimswapImgFP6'];img.imgRolln=img.src;img.src=img.lowsrc?img.lowsr c:img.getAttribute?img.getAttribute('lowsrc'):img. src;" onmouseout="document['fpAnimswapImgFP6'].src=document['fpAnimswapImgFP6'].imgRolln" href="javascript:void(0)"><img border="0" src="http://www.microeffects.com/new/i/menu/1_02.png" id="fpAnimswapImgFP6" name="fpAnimswapImgFP6" dynamicanimation="fpAnimswapImgFP6" lowsrc="http://www.microeffects.com/new/i/menu/2_02.png" width="69" height="35"></a><a onmouseover="var img=document['fpAnimswapImgFP7'];img.imgRolln=img.src;img.src=img.lowsrc?img.lowsr c:img.getAttribute?img.getAttribute('lowsrc'):img. src;" onmouseout="document['fpAnimswapImgFP7'].src=document['fpAnimswapImgFP7'].imgRolln" href="javascript:void(0)"><img border="0" src="http://www.microeffects.com/new/i/menu/1_03.png" id="fpAnimswapImgFP7" name="fpAnimswapImgFP7" dynamicanimation="fpAnimswapImgFP7" lowsrc="http://www.microeffects.com/new/i/menu/2_03.png" width="83" height="35"></a><a onmouseover="var img=document['fpAnimswapImgFP8'];img.imgRolln=img.src;img.src=img.lowsrc?img.lowsr c:img.getAttribute?img.getAttribute('lowsrc'):img. src;" onmouseout="document['fpAnimswapImgFP8'].src=document['fpAnimswapImgFP8'].imgRolln" href="javascript:void(0)"><img border="0" src="http://www.microeffects.com/new/i/menu/1_04.png" id="fpAnimswapImgFP8" name="fpAnimswapImgFP8" dynamicanimation="fpAnimswapImgFP8" lowsrc="http://www.microeffects.com/new/i/menu/2_04.png" width="88" height="35"></a><a onmouseover="var img=document['fpAnimswapImgFP9'];img.imgRolln=img.src;img.src=img.lowsrc?img.lowsr c:img.getAttribute?img.getAttribute('lowsrc'):img. src;" onmouseout="document['fpAnimswapImgFP9'].src=document['fpAnimswapImgFP9'].imgRolln" href="javascript:void(0)"><img border="0" src="http://www.microeffects.com/new/i/menu/1_05.png" id="fpAnimswapImgFP9" name="fpAnimswapImgFP9" dynamicanimation="fpAnimswapImgFP9" lowsrc="http://www.microeffects.com/new/i/menu/2_05.png" width="73" height="35"></a><a onmouseover="var img=document['fpAnimswapImgFP10'];img.imgRolln=img.src;img.src=img.lowsrc?img.lowsr c:img.getAttribute?img.getAttribute('lowsrc'):img. src;" onmouseout="document['fpAnimswapImgFP10'].src=document['fpAnimswapImgFP10'].imgRolln" href="javascript:void(0)"><img border="0" src="http://www.microeffects.com/new/i/menu/1_06.png" id="fpAnimswapImgFP10" name="fpAnimswapImgFP10" dynamicanimation="fpAnimswapImgFP10" lowsrc="http://www.microeffects.com/new/i/menu/2_06.png" width="77" height="35"></a><img border="0" src="http://www.microeffects.com/new/i/menu/ends_07.png" width="187" height="35"></p>
</body>
|
That is one UGLY mess for an image swap ! That's what you get when you use FrontPage.
If your PNG images are supposed to be transparent they won't work in IE6 w/o a bit of scripting to force it.
There's nothing wrong with your background, it's the placement of your #header and #header-menu that's off. You've told it to center those, and it did, which is exactly the problem. Fix your CSS to this and it will fix it.
Quote:
#header-menu {
/*margin: 0 auto;
text-align: center;*/
margin-left: 18px;
width: 695px;
height: 30px;
background: url('i/header-top.png');
background-repeat: no-repeat;
}
#header {
/*margin: 0 auto;
text-align: center;*/
margin-left: 18px;
width: 695px;
height: 200px;
background: url('i/header.png') no-repeat;
border: 1px solid red;
}
|
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|