how do i?

liunx

Guest
on <!-- m --><a class="postlink" href="http://www10.brinkster.com/ostav666/pa/main.htm">http://www10.brinkster.com/ostav666/pa/main.htm</a><!-- m --><br />
<br />
i have a site built in a table. Now i want to start adding stuff to the pages that will appear in one cell.<br />
How do i edit these files?<br />
the html i write in them doesnt work.<br />
should i add some tag to make this work?<!--content-->You have a table cell towards the bottom of your page source code:<br />
<br />
<tr> <br />
<td colspan="3">&nbsp;</td><br />
</tr><br />
<br />
<br />
Instead of the "& n b s p ;" You can add your text/images, etc. It will then appear on top of the 'light' background to the right of your image map (your links).<br />
<br />
Please let us know if this was what you were looking for ?<!--content-->well yesterday i replaced the text links with an image map which makes the pages not to appear<br />
<br />
The first thing i want to know is how to edit those txt files that are supposed to open in the main box once the links are clicked.<!--content-->The target attribute refers to FRAMES (not table cells). Therefore you can not just write "target=mainbox" in the image maps and then expect them to open in a table cell.<br />
<br />
work around:<br />
- recreate your page in frames format (works in all browsers)<br />
- or use inline frames (works in MSIE4++ and NS6++)<br />
<br />
example (inline frame)<br />
instead of:<br />
<br />
<td height="402" width="67%" name="main box" valign="top"> <br />
<!--#include virtual="contact.txt" --><br />
</td><br />
<br />
<br />
use this:<br />
<br />
<td height="402" width="67%" valign="top"> <br />
<iframe name="mainbox"><br />
</iframe><br />
</td><!--content-->i am thankful for all tips as long as the background stays the same<!--content-->
 
Back
Top