hi, im currently building my first web page (written not through program) and im having a few problems.
i have all my images (corner pieces, fill pieces, headers etc) and i know exactly how it SHOULD look however
using tables: i cant get my fill pieces to repeat (100,*,400,*,100 pixels) and my second row (with 3 columns divided up into more columns and rows) wont display as required (ie the 3 TD sections are on top of each other rather than side by side)
here is the nesting
i also tried using frames but that went even worse.
any help appreciated.
If somethings hard to do, its not worth doing - Homer Simpson
adoozer.servebeer.com
i have all my images (corner pieces, fill pieces, headers etc) and i know exactly how it SHOULD look however
using tables: i cant get my fill pieces to repeat (100,*,400,*,100 pixels) and my second row (with 3 columns divided up into more columns and rows) wont display as required (ie the 3 TD sections are on top of each other rather than side by side)
here is the nesting
Code:
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR Width="100%">
<TD WIDTH="100"><IMG SRC="./Pictures/Layout/Top Left Corner.jpg"></TD>
<TD><IMG SRC="./Pictures/Layout/Top Horizontal Fill.jpg"></TD>
<TD WIDTH="400"><IMG SRC="./Pictures/Layout/Logo 400X90.jpg"></TD>
<TD><IMG SRC="./Pictures/Layout/Top Horizontal Fill.jpg"></TD>
<TD WIDTH="100"><IMG SRC="./Pictures/Layout/Top Right Corner.jpg"></TD>
</TR>
<TR WIDTH="100%">
<TD WIDTH="200">
<TR>
<TD><IMG SRC="./Pictures/Layout/Left Vertical Fill.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Top.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Left Fill.jpg"></TD>
<TD><IMG SRC="./Pictures/Layout/Menu Right Fill.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Bottom.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Left Vertical Fill.jpg"></TD>
</TR>
</TD>
<TD><IMG SRC="./Pictures/Layout/AVP2 Background.jpg"></TD>
<TD WIDTH="200">
<TR>
<TD><IMG SRC="./Pictures/Layout/Right Vertical Fill.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Top.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Left Fill.jpg"></TD>
<TD><IMG SRC="./Pictures/Layout/Menu Right Fill.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Bottom.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Right Vertical Fill.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Top.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Left Fill.jpg"></TD>
<TD><IMG SRC="./Pictures/Layout/Menu Right Fill.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Menu Bottom.jpg"></TD>
</TR>
<TR>
<TD><IMG SRC="./Pictures/Layout/Right Vertical Fill.jpg"></TD>
</TR>
</TD>
</TR>
<TR WIDTH="100%">
</TR>
</TBODY>
</TABLE>
i also tried using frames but that went even worse.
any help appreciated.
If somethings hard to do, its not worth doing - Homer Simpson
adoozer.servebeer.com