I\'m trying to \"flank\" a centered div with some design elements that are absolutely positioned outside the main div\'s width. I\'m getting a scroll bar due to the element
I have a solution that doesn't work in IE7/IE6, but seems to be fine everywhere else.
Create wrapper (#bodyInner) around everything inside your <body> tag.
#bodyInner
body
Apply this CSS rule:
#bodyInner { width:100%; overflow:hidden; min-width:960px; }
Too bad you can't just apply this on the <body> element.