|
I am a pathetic newbie. What I want to do is have content on the side of all the web pages on my site that are all the same. Most of this would be links to other pages on the site - standard stuff.
Now frames I know can do this. And I have been playing around with frames and gotten them to work quite nicely.
But the problem is that I don't like the scrollbar and border that comes with them. I don't think any body uses a frame with scrollbar any more, so it looks cheesy imho.
So then I got the idea to use a frame(s) without a scrollbar (or borders) per the script below. This works in the sense that it appends or concatenates, if you will, the pages together. The problem is that you can't scroll down. In other words, I still want the user to be able to scroll down the entire web page (and not just the frame itself).
Is there any way to do this?
Any help is much appreciated.
<head>
<title>First simple frameset example</title>
</head><framesetrows="20%,*">
<framesrc="banner.htm"name="banner"scrolling="no">
<framesetcols="400,*">
<framename="fr1"src="welcome.htm"scrolling="no"frameborder="no"border="no"framespacing="no"/>
<framename="fr2"src="menu.htm"scrolling="no"frameborder="no"border="no"framespacing="no"/>
</frameset>
</frameset>
<noframes>
<body>
<p>Frames are
<em>unfortunately</em>
not available</p>
</body>
</noframes>
</frameset>
</html>
Last edited by Whisper9999; 06-25-2008 at 11:45 PM..
|