conradjk
Sep 11 2009, 01:01 PM
so i posted my site, only to find it is not MSIE compliant.
www.theklinkhammer.com
the navigation buttons scrunch up on the left side in MSIE all versions. How can I fix this?
conradjk
Sep 11 2009, 01:11 PM
update! I was looking at the browsershots from yesterday! Now i guess my biggest problem is that it is not indenting the content from the bar; and that my navbar's background while showing up and doing what i want it to do in safari and firefox on my mac, is not doing what i want in msie. Any help would still be greatly apreciated!
conradjk
Sep 11 2009, 01:21 PM
basicly, my code is
"<body background="images/background.png" leftmargin="0" topmargin="0" rightmargin="0" onLoad="MM_preloadImages('images/forenover.png','images/constover.png','images/fedresover.png','images/debtover.png','images/resumeover.png','images/buttons/rollover/abilities.png','images/buttons/rollover/hello.png','images/buttons/rollover/personal.png','images/buttons/rollover/contact.png','images/htmlover.png','images/3dsmaxover.png','images/protoflashover.png','images/flashover.png','images/ioover.gif','images/japanclubover.gif')" allowtransparency="true">
<div class="nav"><br>
<br>
<a href="able.html"><img src="images/buttons/abilities.png" id="Image12" onMouseOver="MM_swapImage('Image12','','images/buttons/rollover/abilities.png',1)" onMouseOut="MM_swapImgRestore()"></a><img src="images/buttons/spacer.png"> <a href="hello.html"><img src="images/buttons/hello.png" id="Image13" onMouseOver="MM_swapImage('Image13','','images/buttons/rollover/hello.png',1)" onMouseOut="MM_swapImgRestore()"></a><img src="images/buttons/spacer.png"> <a href="personal.html"><img src="images/buttons/personal.png" id="Image14" onMouseOver="MM_swapImage('Image14','','images/buttons/rollover/personal.png',1)" onMouseOut="MM_swapImgRestore()"></a><img src="images/buttons/spacer.png"> <a href="contact.html"><img src="images/buttons/contact.png" id="Image15" onMouseOver="MM_swapImage('Image15','','images/buttons/rollover/contact.png',1)" onMouseOut="MM_swapImgRestore()"></a><img src="images/buttons/spacer.png" width="160"></div>
<table width="100%" height="125" border="0" cellpadding="0" cellspacing="0" class="bar" style="background-image: url(images/bar2.png);" >
<tbody><tr>
</tr>
</tbody></table> "
and that second table just doesn't show up. The css on the bar is just a margin bottom 15 px.
on the nav its
.nav {
top: -2px;
position: absolute;
text-align: center;
left: 50%;
margin-left: -315px;
width: 800px;
height: 174px;
}
conradjk
Sep 11 2009, 01:45 PM
Im focusing mainly on
<table width="100%" height="125" border="0" cellpadding="0" cellspacing="0" class="bar" style="background-image: url(images/bar2.png);" >
<tbody><tr>
</tr>
</tbody></table>
which is not showing up in ie... why?
pandy
Sep 11 2009, 02:08 PM
Correct the errors to start with.
http://www.htmlhelp.com/cgi-bin/validate.c...s&input=yesThe doctype is supposed to be at the top. The way you have it browsers will be in quirks mode and show more bugs than needed.
http://hsivonen.iki.fi/doctype/
conradjk
Sep 11 2009, 02:21 PM
Wow. So many errors. Many of which i do not understand. Do you suppose not putting the doctype is what has caused my IE problems? Other than that i do not understand what else i need to do.
I am no expert with html, and just want my table to show up in IE like it does every other browser....
conradjk
Sep 11 2009, 02:33 PM
it keeps saying i need endtags for <br> and <img>. My understanding is there is no </br> or </img> tags!
I really just want that darn table to show up. I've tried deleting all code except for the table in question, and even THEN it does not show up.... wtf mate?
pandy
Sep 11 2009, 02:41 PM
QUOTE
Do you suppose not putting the doctype is what has caused my IE problems?
You'll know when you've moved it, won't you?
conradjk
Sep 11 2009, 02:58 PM
theklinkhammer.com
moved it. Didn't fix it. In fact for some strange reason it through my layout off by moving the buttons down like 5 pixels... weird.
anyway temporarily i added a IE if hack to give some spacing. But then the layout comes really lame, and i want that bar in there.
If anyone can tell me WHY that bar is not showing up, it would be greatly appreciated... This is so frustrating.
pandy
Sep 11 2009, 05:40 PM
QUOTE
moved it. Didn't fix it.
Didn't move it. You duplicated it.
QUOTE
If anyone can tell me WHY that bar is not showing up, it would be greatly appreciated...
You could always start with fixing the derrors.
http://www.htmlhelp.com/cgi-bin/validate.c...p;input=yes#L63Take the CSS ones too while you're at it.
http://jigsaw.w3.org/css-validator/validat...g=1&lang=enQUOTE
This is so frustrating.
Yes, it is.