PDA

View Full Version : Iframes


spanish_steps
04-20-2003, 03:53 PM
hello,

Could somebody please tell me the attribute in-order to make the iframe fixed.

If you take a look at this page (http://inkaytown.f2o.org) and when you use the scroll bar, the frame keeps moving.I just want to keep this at the bottom of this page and also I want to disable the scroll bar.could somebody please help me out.

Many thanks

Antoniohawk
04-20-2003, 05:06 PM
<style>
body {
overflow: hidden;
}
</style>

spanish_steps
04-20-2003, 08:47 PM
hello,

could somebody please tell me where should I place the above code if I does'nt use CSS.

Many thanks

Quiet Storm
04-20-2003, 11:59 PM
Originally posted by Antoniohawk
<style>
body {
overflow: hidden;
}
</style>

Could you be less vague, Antoniohawk? :D

The above code should be placed between the <HEAD> and </HEAD> tags. That will keep the scrollbars from appearing.

:thumbsup:

If you don't want to use CSS try this:


<body scroll="no">

Antoniohawk
04-21-2003, 02:18 AM
lol i guess i could have just said "overflow: hidden;".

Quiet Storm
04-21-2003, 02:31 AM
ROTFLOL!

:D

spanish_steps
04-21-2003, 09:43 AM
Thxs quiet:)