Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want to create the illusion of a frame but without using a frame

Status
Not open for further replies.

georgeous

Programmer
Jul 11, 2001
38
0
0
GB
Basically I am writing a long web form, and I want a picture to permanently remain at the bottom of the screen.
So users can still scroll down the form but the picture will always be there.
I know I should just use a bottom frame, but i'm not allowed to.
Is there any way I can do this?
 
Use an <iframe> to put the form in. And have the main page stay the same.

Code:
<html>
    <head>
    </head>
    <body>
        blablal bglablabl abl ablal<br>
        <iframe width=&quot;100%&quot; height=&quot;200&quot; src=&quot;scrollform.html&quot;><br>
        balbl blab bla blbalbal blb albala
    </body>
</html>

Take Care,
Mike
 
Another option would be to use layers.

You will never get around browser compatibility. With anything you do there will be browsers that don't support this or that, even the newest ones.

Take Care,
Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top