Click to See Complete Forum and Search --> : Scrol Bars
TheRuler
01-25-2003, 11:08 AM
Hi All :)
I'm building up a website using microsoft's Frontpage, and I desighned it by frames -three frames for each page- but each frame scrolls alone can't I scroll all of them togather as if they were a table -I don't wanna use tables- ....
Thanx a lot:D
Zach Elfers
01-25-2003, 11:35 AM
You could use an iframe.
<iframe width="150" height="150" name="iframe1" src="page.html">Alternate Text incase the browser doesn't support iframes</iframe>
I don't know if this is what you want though. I am not sure exactly what you mean.
TheRuler
01-26-2003, 04:27 AM
I guess u didn't get me :) I'm using frontpage and I've divded the page to three frames...
How can I make a big scrol bar for all the frames?
" U know each frame has it's own scroll bar I just want one at the left to scroll all the page that's all" is that possible ??
Thanx for replying
Stefan
01-27-2003, 01:46 AM
As zach said, use an Iframe to place this one frame onto a page which has the information of the 2 other frames in the same page.
How to use iframes can be read here
http://www.w3.org/TR/html4/present/frames.html#h-16.5
TheRuler
01-27-2003, 04:39 AM
Hi,
As I said in the begining I'm using frontpage , so where shall I past that script under the head ?? in the HTML or Frames HTML ???
please answer thanx
TheRuler
01-27-2003, 05:32 AM
oh and here is my "frames Page HTML" in case u needed it :)
<html>
<meta http-equiv=Pragma content=no-cache>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
<meta http-equiv=expires content=0>
</script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
<title>The Truth Net</title>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
</head>
<frameset rows="94,*" framespacing="0" border="0" frameborder="0">
<frame name="banner" scrolling="no" noresize target="contents" src="Head.htm">
<frameset cols="120,*">
<frame name="contents" target="main" src="titles.htm" scrolling="auto" marginwidth="12" marginheight="16">
<frame name="main" src="Home.htm" scrolling="auto">
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
Stefan
01-27-2003, 06:07 AM
Originally posted by TheRuler
Hi,
As I said in the begining I'm using frontpage , so where shall I past that script under the head ?? in the HTML or Frames HTML ???
please answer thanx
You should NOT use the frames at all.
You should start from scratch with a new page and then add an <iframe> to it just like if it was eg a <p></p>.
And if you don't need to reload parts of the page and the only thing you really want is a scrollbar, you don't ewven need to use an <iframe>.
This would woork too
<div style="width:100px; height:100px; overflow:auto;">
Your content that should have a scrollbar goes here</div>
TheRuler
01-27-2003, 08:55 AM
It didn't work where shall I past it ??
Stefan
01-27-2003, 01:35 PM
Originally posted by TheRuler
It didn't work where shall I past it ??
Where is your remade page so I can show you?
Hermond
01-27-2003, 03:04 PM
Hello TheRuller,
I agree with Stefan that you shouldn't use frames and that you should start again with a new page and inserting your info inside.
If you are using a normal Front Page (2000 or 2002) you can insert an inframe directly from the insert menu, it will look as you just inserted a page into your page. Then treat everything as your normal page, and that's all.
Try to use the help of automatic things in FP, I can see that you have a lot of problems with coding (I also responded about your form question), so don't code yourself, just insert things with FP, usually they work fine.
Hope it helps.
TheRuler
01-27-2003, 04:06 PM
Thanx sooooooooooooo much this is just what I needed, but can't I remove the spaces between them just as normal frames ???
TheRuler
01-28-2003, 01:32 AM
And how can I fit them to the page's hieght and wiedth ??