Forum Moderators: open
I went through and validated all of my pages (quite a bit of work). For some reason, when I uploaded my pages to a server, a horizontal scroll bar appeared in IE 6.0, but not in NN6.2. There was no scroll bar while authoring at all on IE 6.0 either. Just a bit stumped. Wondering why this could be happening.
Thanks for any help
In fact, if you send me the URL through Sticky Mail I'd be glad to take a look.
I have a 21" monitor set at 1600x1200 res. - when I opened your page with Opera there was no horizontal scrollbar at all...
IE6 opened with the browser window stretched vertically... no horizontal bar until I drag the window to compress it vertically, as soon as I reached your content the horizontal bar appeared... and so did a Gator install window... Could it be your host?
If you have NN 6.2 and a minute, could you tell me why this padding might be showing up below the graphic in the right corner?
It doesn't show up in IE 6.0 and it wasn't applied via stylesheet or table. I thought maybe one of you have seen something similar.
+user profile+
Thanks for looking out.
One thing I tried was eliminating the spaces and line breaks in your code around the image tag. So I made those closing tags go <img /></td></tr></table> ... all on one line.
No joy.
I've looked at it pretty hard, tried adding height attributes to the table, etc. You have straighforward code - I have no idea what NN6.2 is doing with it.
Hoping for better support, I converted the <table> that holds your image to a <div>, and added the extra attributes to the .border3 class in your css. Unfortunately Netscape 6.2 still throws in that extra space.
This may not be doable without a total re-thinking of how you code the design. Check out this tutorial about Netscape 6 and the box model on WebReference [webreference.com]
The Invisible PaddingNavigator always inserts an extra 3 pixels of transparent "padding" between the element's padding and border, no matter what you do.
However, the box margin tutorial [webreference.com] was a very useful find in itself - an "instant" bookmark for me.
One fix was found for this Netscape calamity: In this case, I had to make my image a block-level element--
<img style="display: block;" href... />
This eliminated the 3 pixels without using nested divs (not a bad solution if figured out) or proprietary layers and positioning.
Madcat