Here is the code I had: <table class="topbkg" width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td><a href="{U_INDEX}"><img src="templates/fiplain/images/phpbb2_logo.gif" border="0" alt="{L_INDEX}" title="{L_INDEX}" width="333" height="171" /></a></td> <td align="center" width="100%"> </tr> </table> Code (markup): I changed it to this: <table class="topbkg" width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td>[B]<center>[/B]<a href="{U_INDEX}"><img src="templates/fiplain/images/phpbb2_logo.gif" border="0" alt="{L_INDEX}" title="{L_INDEX}" width="333" height="171" /></a>[B]</center>[/B]</td> <td align="center" width="100%"> </tr> </table> Code (markup): Didn't work. Tried this: <table class="topbkg" width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> [B]<div align="center">[/B]<td><a href="{U_INDEX}"><img src="templates/fiplain/images/phpbb2_logo.gif" border="0" alt="{L_INDEX}" title="{L_INDEX}" width="333" height="171" /></a></td>[B]</div>[/B] <td align="center" width="100%"> </tr> </table> Code (markup): Still doesn't work! Can anyone tell me how to center my logo?
Get rid of... <td align="center" width="100%"> </tr> Code (markup): And change... <td> Code (markup): to... <td align="center" width="100%"> Code (markup): The final code will look like... <table class="topbkg" width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td align="center" width="100%"> <a href="{U_INDEX}"><img src="templates/fiplain/images/phpbb2_logo.gif" border="0" alt="{L_INDEX}" title="{L_INDEX}" width="333" height="171" /></a></td> </table> Code (markup): You will have to edit and crop the image because the actual logo is to the right-side of the image file.