Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Input replacement

Status
Not open for further replies.

SoyDelicious

Technical User
Jul 23, 2002
46
0
0
US
<code>
<html>
<head>
<title>register</title>
<meta HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=iso-8859-1&quot;>
</head>
<body BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
<div align=&quot;center&quot;>
<table WIDTH=500 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<tr>
<td COLSPAN=4> <img SRC=&quot;index/index_01.gif&quot; WIDTH=500 HEIGHT=21 ALT=&quot;&quot;></td>
</tr>
<tr>
<td ROWSPAN=2> <img SRC=&quot;index/index_02.gif&quot; WIDTH=24 HEIGHT=599 ALT=&quot;&quot;></td>

<td> <img SRC=&quot;index/index_03.gif&quot; WIDTH=298 HEIGHT=172 ALT=&quot;&quot;></td>
<td>&nbsp; </td>
<td ROWSPAN=2> <img SRC=&quot;index/index_05.gif&quot; WIDTH=22 HEIGHT=599 ALT=&quot;&quot;></td>
</tr>
<tr>
<td COLSPAN=2> <img SRC=&quot;index/register_06.gif&quot; WIDTH=454 HEIGHT=427 ALT=&quot;&quot;></td>
</tr>

<tr>
<td COLSPAN=4> <img SRC=&quot;index/index_07.gif&quot; WIDTH=500 HEIGHT=20 ALT=&quot;&quot;></td>
</tr>
</table>
</body>
</html>

At this point I have a one top border .gif and two side borders and a bottom. In the middle I have to pictures. Although what I wish to do is loose one of the pictures register_06gif and throw in a php form. Now when I do this the top picture index_03.gif falls down to the middle and my form drops outside the given area (within the borders). Can any input would be appreciated I'm really stuck here, thanks.
 
move your height and width attributes to the td:

<tr>
<td COLSPAN=2> <img SRC=&quot;index/register_06.gif&quot; WIDTH=454 HEIGHT=427 ALT=&quot;&quot;></td>
</tr>

<tr>
<td COLSPAN=2 WIDTH=454 HEIGHT=427> form </td>
</tr>

=========================================================
-jeff
try { succeed(); } catch(E) { tryAgain(); }
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top