DTT
02-21-2003, 11:00 PM
Gah, so confused! My question is, on my site (( http://opk.twilight-eclipse.net/ )), there's always a scrollbar on the right, even though you can't scroll up or down. How do I get rid of it?
|
View Full Version : Basic - Scrollbar DTT 02-21-2003, 11:00 PM Gah, so confused! My question is, on my site (( http://opk.twilight-eclipse.net/ )), there's always a scrollbar on the right, even though you can't scroll up or down. How do I get rid of it? oncewaslost 02-21-2003, 11:04 PM isn't there a scrolling=no code or is that only allowed to be used in frames? DTT 02-21-2003, 11:12 PM Guh... I dunno, I go check. Bah, don't work. StyGomez 02-21-2003, 11:25 PM <STYLE> body {overflow:hidden;} </STYLE> :D oncewaslost 02-21-2003, 11:26 PM awesome! thanks! DTT 02-22-2003, 01:50 AM Ooooh... *Bows* I am forever in thy debt, Masta!!!! duredriel 02-22-2003, 05:14 PM Ok, does that code only remove the scrollbar that runs vertical? Because I need my vertical scrollbar, but I have mouse fireworks on my page and when you click too close to the side the horizontal scroll bar comes up. So how do I ONLY get rid of my horizontal bar? starlet 02-22-2003, 05:51 PM <STYLE> body {overflow-x:hidden;} </STYLE> Or just to the body tag <body style="overflow-x:hidden"> (x is the horizontal bar, y is the verticle) duredriel 02-22-2003, 10:24 PM Thank you SO much! Now I don't have to fret over that anymore! |