you're welcome mate, here is another example:
PHP Code:
<table border="1" bordercolor="#808080" style="padding:4px; border-style:dashed; border-width:3px; background-color:#FFFFFF; border-collapse:collapse" width="100%" cellpadding="2" bordercolorlight="#000000">
<tr>
<td width="33%" valign="top" align="center">
<b><a href="http://www.your-domain.com/sendmessage.php">
<font size="4" color="#008000" face="Georgia">Get You Ad Space Here!!!</font></a></b></td>
<td width="33%" align="center">
<b><a href="http://www.your-domain.com/sendmessage.php">
<font size="4" color="#008000" face="Georgia">Get You Ad Space Here!!!</font></a></b></td>
<td valign="top" width="34%" align="center">
<b><a href="http://www.your-domain.com/sendmessage.php">
<font size="4" color="#008000" face="Georgia">Get You Ad Space Here!!!</font></a></b></td>
</tr>
</table>
you can style it the way you want, for example play with these colors:
bordercolor="#808080"
background-color:#FFFFFF
font size="4"
face="Georgia"
Here is another example with fixed width (800px) with a background image of you choice:
PHP Code:
<table border="1" bordercolor="#808080" style="padding:4px; border-style:dashed; border-width:3px; background-color:#FFFFFF; border-collapse:collapse" width="800" cellpadding="2" bordercolorlight="#000000" background="images/someimage.jpg">
<tr>
<td width="33%" valign="top" align="center">
<b><a href="http://www.your-domain.com/sendmessage.php">
<font size="4" color="#008000" face="Georgia">Get You Ad Space Here!!!</font></a></b></td>
<td width="33%" align="center">
<b><a href="http://www.your-domain.com/sendmessage.php">
<font size="4" color="#008000" face="Georgia">Get You Ad Space Here!!!</font></a></b></td>
<td valign="top" width="34%" align="center">
<b><a href="http://www.your-domain.com/sendmessage.php">
<font size="4" color="#008000" face="Georgia">Get You Ad Space Here!!!</font></a></b></td>
</tr>
</table>
just change the "images/someimage.jpg" to the right path of the background image of your choice.
Good Luck.