View Full Version : Page Layout: Graphics in a Table


Petrushka
03-03-2003, 09:00 PM
THE LAYOUT (http://www.freewebz.com/november301862/steeplechase/normal.htm)

Am struggling to align the bottom piece of this image to complete the layout. Does anyone know what I've done wrong?

The html:

<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Untitled Normal Page</title>
</head>

<body bgcolor="#FFFFFF">
<div align="center"><center>

<table border="0" cellpadding="0" cellspacing="0" width="64">
<tr>
<td align="right" valign="top" rowspan="3" width="64%"><img
src="http://www.freewebz.com/november301862/steeplechase/1.jpg"
width="64" height="709"></td>
<td align="center" valign="top" width="352%"><img
src="http://www.freewebz.com/november301862/steeplechase/3.jpg"></td>
<td align="center" valign="top" rowspan="3" width="34%"><img
src="http://www.freewebz.com/november301862/steeplechase/2.jpg"
width="64" height="709"></td>
</tr>
<tr>
<td align="center" valign="top" width="352%"><!--webbot
bot="HTMLMarkup" startspan --><TR>
<TD style="width: 352px; height: 237px; font-family: verdana;

font-size: 11px; color: black;" valign=top>
<object style="width: 352px; height: 237px; overflow: auto; border: 0; border-style: none;"

data=http://www.freewebz.com/november301862/steeplechase/texthere.htm></object></TD>
</TR>
<TR>
<TD><!--webbot
bot="HTMLMarkup" endspan --></td>
</tr>
<tr>
<td valign="top" width="352%"><img src="http://www.freewebz.com/november301862/steeplechase/4.jpg"
width="352" height="24"></td>
</tr>
</table>
</center></div>
</body>
</html>

Alcy
03-04-2003, 12:11 AM
Try this (you had a couple of extra </td> and </tr>):

<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Untitled Normal Page</title>
</head>

<body bgcolor="#FFFFFF">
<div align="center"><center>

<table border="0" cellpadding="0" cellspacing="0" width="64">
<tr>
<td align="right" valign="top" rowspan="3" width="64%"><img src="http://www.freewebz.com/november301862/steeplechase/1.jpg" width="64" height="709"></td>
<td align="center" valign="top" width="352%"><img src="http://www.freewebz.com/november301862/steeplechase/3.jpg"></td>
<td align="center" valign="top" rowspan="3" width="34%"><img src="http://www.freewebz.com/november301862/steeplechase/2.jpg" width="64" height="709"></td>
</tr>
<tr>
<TD style="width: 352px; height: 237px; font-family: verdana; font-size: 11px; color: black;" valign=top>
<object style="width: 352px; height: 237px; overflow: auto; border: 0; border-style: none;" data=http://www.freewebz.com/november301862/steeplechase/texthere.htm></object>
</TD>
</TR>
<tr>
<td valign="top" width="352%"><img src="http://www.freewebz.com/november301862/steeplechase/4.jpg" width="352" height="24"></td>
</tr>
</table>

</center></div>
</body>
</html>

Petrushka
03-04-2003, 08:18 PM
Thank you so much!