View Full Version : scroll


ashleyhd
01-06-2006, 03:19 AM
How do I get rid of the bottom scroll in my I-frame? (check it out - http://www.imacarrie.org)

Monkey Bizzle
01-06-2006, 03:52 AM
<iframe style="position: absolute; left: 195px; top: 225px; width: 195px; height: 300px;" src="left.html" name="left" frameborder="0" scrolling="no"></iframe>

<iframe style="position: absolute; left: 395px; top: 225px; width: 400px; height: 300px; overflow-x: none;" src="blog.html" name="blog" frameborder="0" scrolling="yes"</iframe>

add the red parts. adding an end tag to your iframes may actually make it work in Firefox, too.

djou
01-06-2006, 11:54 AM
It shouldn't be overflow-x:none, but overflow-x:hidden.

ashleyhd
01-06-2006, 02:10 PM
<iframe style="position: absolute; left: 195px; top: 225px; width: 195px; height: 300px;" src="left.html" name="left" frameborder="0" scrolling="no"></iframe>

<iframe style="position: absolute; left: 395px; top: 225px; width: 400px; height: 300px; overflow-x: none;" src="blog.html" name="blog" frameborder="0" scrolling="yes"</iframe>

add the red parts. adding an end tag to your iframes may actually make it work in Firefox, too.

I did all that, and even made the change to "hidden", but it still didn't work :(

Any other ideas?

Monkey Bizzle
01-06-2006, 08:26 PM
It shouldn't be overflow-x:none, but overflow-x:hidden.

You are right, I'm sorry :blush:

I just noticed that you are missed a > after scrolling="yes" in your second iframe code... Perhaps that has something to do with it? And I can see your site in Firefox now so that's always a plus =)

ashleyhd
01-06-2006, 08:28 PM
You are right, I'm sorry :blush:

I just noticed that you are missed a > after scrolling="yes" in your second iframe code... Perhaps that has something to do with it? And I can see your site in Firefox now so that's always a plus =)

ok I'll try that...thanks so much for your help

ashleyhd
01-06-2006, 08:30 PM
that didn't work either!!! I don't know how to get rid of it and it's getting very frustrating.

Monkey Bizzle
01-06-2006, 08:55 PM
The only other thing I can suggest is to change scrolling="yes" in the second iframe to scrolling="auto"

ashleyhd
01-06-2006, 09:15 PM
The only other thing I can suggest is to change scrolling="yes" in the second iframe to scrolling="auto"

OK I figured out what's CAUSING the problem. If I go into my blog frame, and take out the post that contained thumbnails (50x50), the bottom scrollbar goes away.

Think you can figure it uot now?