Click to See Complete Forum and Search --> : horizontal scrolling in firefox


jlander
06-04-2007, 11:17 AM
so I have this layout --> http://jlandsub.com/layout.html
it's coded in tables, and with maximized browser, it doesn't require any scrolling. However when I make my firefox window smaller, the horizontal scrollbar doesn't scroll... no matter how small I make the window.

is the browser somehow registering the table as a background, and so that's why it doesn't care of the background overflows off to the side?

I don't have this problem in IE...

Robert Wellock
06-04-2007, 11:42 AM
It is probably because you have nested the tables and give them explicit widths thus it doesn't know the actual height of the contents.

<table width=1200 border=0 cellspacing=0 cellpadding=0 align=right>

Remove: align=right.

tracknut
06-04-2007, 11:50 AM
I'm not sure why, but I think if you remove the "align=right" from the table, it'll scroll. You might also add a doctype to the file.

Dave

jlander
06-04-2007, 06:06 PM
wow! you're both right. It worked. Thanks!!

and I still managed to keep align=right by making the td align right instead :D