Forum Logo - Incorrect Display in FireFox - Need Fix

Associate
Joined
26 Oct 2002
Posts
1,585
Location
Middlesbrough
I'm having a problem with the Logo on a forum of mine not displaying correctly.

You can view the forum here - http://mrmacca.com/AscendantsForum/index.php

In IE it seems to appear ok, however in Firefox (which i Use) it is aligned to the left of the screen rather than in line with the rest of the forum.

Could someone please take a look at the Source and see where I have gone wrong whilst editing it. Sick and tired of it looking like a shoddy job and it's about time I got it sorted :D

If there is anything else that might be needed such as access to a specific file I can provide everything.

Thanks in Advance.
 
<a href="index.php"><img src="templates/AcidTechBlood/images/logo_mid.gif" height="200" alt="Ascendants Of Evil Forum Index" /></a>

this isnt in a td cell. if you put align="center" in to the image that may work if not put with in cell.
 
Try changing
Code:
<table width="800" cellspacing="0" cellpadding="0" border="0" align="center" id="maintable">
<a href="index.php"><img src="templates/AcidTechBlood/images/logo_mid.gif" height="200" alt="Ascendants Of Evil Forum Index" /></a>
<tr>
	<td valign="top" class="content-row"><table border="0" width="100%" cellspacing="0" cellpadding="0" id="logotable">
	<tr>

		<td align="center" class="logorow1"><div class="logorow2"></div></td>
	</tr>
	</table>
to
Code:
<table width="800" cellspacing="0" cellpadding="0" border="0" align="center" id="maintable">

<tr>
	<td valign="top" class="content-row"><table border="0" width="100%" cellspacing="0" cellpadding="0" id="logotable">
	<tr>

		<td align="center" class="logorow1"><a href="index.php"><img src="templates/AcidTechBlood/images/logo_mid.gif" height="200" alt="Ascendants Of Evil Forum Index" /></a><div class="logorow2"></div></td>
	</tr>
	</table>

obviously I've missed out the rest of the page in those code snippets.
 
Back
Top Bottom