View Full Version : Really Importantt Q!!!!!!!!!


jonathan12
03-22-2003, 05:21 AM
I can't for the life of me fidure out how to put my links on the right side of my Iframe! Like I try aligning it left but it only lines up to the left on the bottom. But I want it directly to the left of the frame.. PLEASE HELP ME OUT ON THIS

pink_fishies
03-22-2003, 05:27 AM
do you have an example of what you want to use? or can you show me your url so I can see what you are doing wrong?

jonathan12
03-29-2003, 02:56 AM
Here is the HTML:

<br>

<BODY BGCOLOR="#9e9c9d" LINK="#F5F5F5" VLINK="#0000FF">
<font><base font="times new roman" size="7" color="oooooo">

<center><img src="dumbskaters.jpg" alt="skate"></center>








<div align="center"><iframe src="test_middle.htm" name="middle" width="600" height="500" style="border: 5 solid #00000"></iframe></div>
<div align="center"><A HREF="http://dumbskater.proboards5.com/" TARGET= "middle">Forum</A>
<A HREF="footy.htm" TARGET= "middle">Footage</A>
<A HREF="pictures.htm" TARGET= "middle">Pictures</A>
<A HREF="links.htm" TARGET= "middle">Linx</A>
<A HREF="righthome.htm" TARGET= "middle">Home</A>
<p>
</align>
</FONT>

How do I get the links to appear to the right of my Iframe?

Alcy
03-29-2003, 03:09 AM
<div align="right">
<A HREF="http://dumbskater.proboards5.com/" TARGET= "middle">Forum</A>
<A HREF="footy.htm" TARGET= "middle">Footage</A>
<A HREF="pictures.htm" TARGET= "middle">Pictures</A>
<A HREF="links.htm" TARGET= "middle">Linx</A>
<A HREF="righthome.htm" TARGET= "middle">Home</A>
</div>

jonathan12
03-29-2003, 04:37 PM
That just moved the links to the bottom right hand corner of the Iframe. And example of what I want is: www.selectskate.com

(click to get into the old site_ See how the links are to the right of the iframe? that' what I want.

Alcy
03-29-2003, 06:09 PM
You could try using a table....

<table align="center" border="0" cellpadding="0" cellspacing="0">
<tr>

<td valign="top">
<iframe src="test_middle.htm" name="middle" width="600" height="500" style="border: 5 solid #00000"></iframe>
</td>

<td valign="top">
<A HREF="http://dumbskater.proboards5.com/" TARGET= "middle">Forum</A>
<A HREF="footy.htm" TARGET= "middle">Footage</A>
<br>
<A HREF="pictures.htm" TARGET= "middle">Pictures</A>
<br>
<A HREF="links.htm" TARGET= "middle">Linx</A>
<br>
<A HREF="righthome.htm" TARGET= "middle">Home</A>
</td>

</tr>
</table>