Horizontal scrollbars in IE6 need to DIE

windows

Guest
Alright, here's the deal. I'm sure this is some stupid mistake that I'm making, but after you spend so long designing a page, you kinda seem to overlook silly things.

At <!-- m --><a class="postlink" href="http://www.ineptsucks.com">http://www.ineptsucks.com</a><!-- m -->, the main content is called into an iframe in the middle of the page. But there's this nasty horizontal scrollbar in IE6. (Go to the literary section, then choose Bliss or any other selections where the page scrolls.) It's not there in Opera, and I haven't Download ed any other browsers yet because I'm not too concerned with it until I get this fixed.

Anyone care to divulge on why this horrible scrollbar won't go away? Also, if there are any other glaring accesibility errors, feel free to let me know.I could see no horizontal scrollbar in IE.
As for other problems/comments:
Window scrollbar invisible in IE
Tables used for layout
iframe not supported on older browsers
font-size fixed
First letter of menu links aligned on background image line
There is an accessablility forum use itDid you go through the literary section, then to a spot where it requires vertical scrolling? I know it's not there on the main page where the news is.

Yeah, I'm aware of those issues, but I'm working on one thing at a time.Got it.
In the iframe page you have:
.body { ... }
should be:
body { width:400px;}
body is not a class and width less than the width of the iframe to allow for the scrollbar.
 
Back
Top