thread: Can some one?
View Single Post
  #10  
09-27-2003, 01:46 AM
oddguy's Avatar
oddguy
OWF MVP
 
: Jun 2003
: Montana
: 4,086
Rep Power: 25
oddguy  (10)

Here we go! Sorry, I made a typo!

"MenuBar"
In this page, you'll have to create a hyperlink surrounding your thumbnail images in the "img tag". After the link put the "target=MenuBar.html" tag. This makes it so your page pops up in the Mainwindow while keeping the SideMenu off to the side.

Example:

<a href="picture1.html" target="mainwindow"><img src="thumbnail1.gif"></a> <br>

"TargetWindow"
This is the page where you add the "frameset tag". DO NOT PUT IT IN THE BODY. This tag goes between the head tag.

Example:

<frameset cols="25%,75%">
<frame src="MenuBar.html" name="sidemenu" noresize>
<frame src="TargetWindow.html" name="mainwindow">
</frameset>


Pretty much MenuBar.html doesn't have to be exact. The HTML page you want to be off the side goes in front of sidemenu. I just put it there for an example. The same goes for TargetWindow.html.

-oddguy
__________________


Last edited by oddguy; 09-26-2003 at 05:59 PM..
Reply With Quote