View Full Version : Removing scrollbar


Junior
01-07-2005, 11:34 PM
Um does anyone know how to remove the bottom scrollbar that moves left to right in an iframe without modifying the width of the iframe?

If you want to know why I want to do this you can check my page at
http://clanblizz.mfhosting.com/main.php

The iframe in the middle has a scrollbar going left and right which I dont need there. How can I remove it w/o modifying the width?

Junior

Junior
01-07-2005, 11:42 PM
Sorry I couldn't edit the top one anymore....so I wrote this down here...

If you want to know why I want to do this you can check my site out at

"http://clanblizz.mfhosting.com/main.php"

The iframe in the middle has a scrollbar going left and right which I dont need there. How can I remove it w/o modifying the width?

kittycat
01-08-2005, 01:07 AM
First try adding margin: 0; to the BODY section of your CSS to see if it helps.
If it doesn't, add overflow-x: hidden; to the body section instead.
This is for the page inside the iframe

Junior
01-08-2005, 05:34 PM
First try adding margin: 0; to the BODY section of your CSS to see if it helps.
If it doesn't, add overflow-x: hidden; to the body section instead.
This is for the page inside the iframe

Hey thanks! That did it! :)