Posts: 159
Location: Skegness, Lincolnshire, England
|
Ok, this was an easy one to sort. You are missing a table in your code.
Rather than copy out the whole page source here, I've just put the snippets you need to add.
Line 26: At the moment you have
Quote:
<TD COLSPAN=2 ROWSPAN=6 background="images/fansite2_06.png"><p>
<td width="100%" style="text-align:justify">
|
This should be:
Quote:
<TD COLSPAN=2 ROWSPAN=6 background="images/fansite2_06.png"><p>
<table><tr>
<td width="100%" style="text-align:justify">
|
Line 50: You have
Should be:
I've tested in both IE and Firefox and all seems aok
Few comments I would make:
- <font> tags have been deprecated - use CSS
- there is no CSS file - put all your inline styles into a CSS and use classes
- you have no <!DOCTYPE in your header - try <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- no meta description or keywords
- get rid of the huge amounts of whitespace and lowercase your tags
Finally, at the bottom of the page you have:
Quote:
<TR>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=39 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=54 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=111 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=28 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=291 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=203 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=298 HEIGHT=1 ALT=""></TD>
</TR>
|
This is nonsensical and could be reduced to a single <td> element as:
Quote:
|
<tr><td colspan="7"><imc src="images/spacer.gif" width="1024" height="1"></td></tr>
|
Hope all that makes sense and works for you. Cool looking site btw 
|