View Full Version : Way to stop horizontal scrolling?


Warvold_92
01-05-2006, 05:09 PM
Is there a code that I can insert into my CSS that will stop horizontal scrolling?

I'm sure I saw it on the website, but, I can't find it...

Thanks!

djou
01-05-2006, 05:38 PM
In the body section, add overflow-x:hidden, like this:

body {
everything else you already have;
overflow-x:hidden}

Warvold_92
01-05-2006, 05:46 PM
In the body section, add overflow-x:hidden, like this:

body {
everything else you already have;
overflow-x:hidden}

Thank you very much! =D

djou
01-05-2006, 07:53 PM
You're welcome. :)