Sydney
01-26-2003, 08:59 PM
Ok. I havent made a website for a long time and I completely forget how to set it up so my links will open properly within my iframe. I have checked through the search forum and cant find what I am looking for. I am not even sure if I have rest of ifram format done correctly. Can someone please check out my site and see what I am doing wrong??
The files on my site are the images (left.gif, right.gif, bg.gif(bg for iframe) top.gif and bottom.gif. Index.html & main.html. Also have one link, News.html which I am trying to find out why it wont open within iframe.
Test Site Here (http://that1bar.tripod.com/index.html)
Thank you
Sydney
01-26-2003, 09:41 PM
Here is my index.html
<HTML>
<HEAD>
<TITLE>iframe</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BGCOLOR=#FFFFFF>
<!-- ImageReady Slices (bar.psd) -->
<center><TABLE WIDTH=800 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<iframe src="main.htm" FRAMEBORDER="0" height="387" width="420" scrolling=auto NAME="main"></iframe>
<TR>
<TD COLSPAN=3>
<IMG SRC="images/top.gif" WIDTH=800 HEIGHT=170 BORDER=0 USEMAP="#top_Map"></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/left.gif" WIDTH=187 HEIGHT=387 BORDER=0 USEMAP="#left_Map"></TD>
<TD>
<IMG SRC="images/bg.gif" WIDTH=420 HEIGHT=387 BORDER=0 USEMAP="#bg_Map" NAME="main"></TD>
<TD>
<IMG SRC="images/right.gif" WIDTH=193 HEIGHT=387 BORDER=0 USEMAP="#right_Map"></TD>
</TR>
<TR>
<TD COLSPAN=3>
<IMG SRC="images/bottom.gif" WIDTH=800 HEIGHT=43></TD>
</TR>
</TABLE>
<MAP NAME="top_Map">
<AREA SHAPE="rect" ALT=":Links:" COORDS="561,143,658,170" HREF="links.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Contact:" COORDS="476,143,547,170" HREF="contact.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Directions:" COORDS="371,143,462,170" HREF="directions.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Photos:" COORDS="292,143,360,170" HREF="photos.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Calendar:" COORDS="200,143,281,170" HREF="calendar.html" TARGET="main">
<AREA SHAPE="rect" ALT=":News:" COORDS="130,143,190,170" HREF="news.html" TARGET="main">
</MAP>
<MAP NAME="left_Map">
<AREA SHAPE="rect" ALT=":News:" COORDS="130,0,187,1" HREF="news.html" TARGET="main">
</MAP>
<MAP NAME="bg_Map">
<AREA SHAPE="rect" ALT=":Links:" COORDS="374,0,420,1" HREF="links.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Contact:" COORDS="289,0,360,1" HREF="contact.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Directions:" COORDS="184,0,275,1" HREF="directions.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Photos:" COORDS="105,0,173,1" HREF="photos.html" TARGET="main">
<AREA SHAPE="rect" ALT=":Calendar:" COORDS="13,0,94,1" HREF="calendar.html" TARGET="main">
<AREA SHAPE="rect" ALT=":News:" COORDS="0,0,3,1" HREF="news.html" TARGET="main">
</MAP>
<MAP NAME="right_Map">
<AREA SHAPE="rect" ALT=":Links:" COORDS="0,0,51,1" HREF="links.html" TARGET="main">
</MAP>
<!-- End ImageReady Slices -->
</BODY>
</HTML>