HermioneG
05-26-2003, 12:16 PM
I want to make a website with frames, but the way I want it I can't find how. This is how I would like it to be:
http://home.wirehub.nl/~jmm/example.jpg
I want 1, 2 and 3 to be visible all the time, so they wont move when you scroll down. 1 and 3 will only be an image background, but 2 will be an image background and will have the menu on it too.
The page in the middle has to have the scrollbar next to it, so only that part of the website will move.
How do I do that?
bubblegummy
05-26-2003, 01:00 PM
<html>
<head>
<title>your title goes here</title>
</head>
<FRAMESET COLS="15%, 70%, 15%">
<FRAME SRC="left.html" NAME="left">
<FRAMESET ROWS="20%,80%">
<FRAME SRC="top.html" NAME="top">
<FRAME SRC="bottom.html" NAME="bottom">
</FRAMESET>
<FRAME SRC="right.html" NAME="right">
</FRAMESET>
<NOFRAMES>
Your message for people with computers that can't view frames go here
</NOFRAMES>
</HTML>
That should work :)
HermioneG
05-26-2003, 03:07 PM
It allmost worked, but something isn't right:
http://home.wirehub.nl/~jmm/testindex.html
The top frame has an image which should fit perfectly, but the image is put to the bottom right, there's a piece that you can't see. I don't understand it 'cause the frame is exactly the right size.
How do I put the image back to the top left corner so it fits and the whole image is visible?
By the way, I know the links don't work properly yet ;)
Set the image as the background of that page, or set the page margins to zero.
Hehe, I used to have that problem with frames as well :)
HermioneG
05-27-2003, 03:36 PM
Thanks for your reply!
But I did it with an Iframe in the middle already:
click to view (http://home.wirehub.nl/~jmm/index2.html)
But I was wondering, what if people with an older browser can't see the iframe? I heard not everyone can see them.
Is there another way to make only one part of the page move, so the background and the menu will be on the same place? Or can you do that only with frames or iframes?