-
Banner Link Problem
Hi,
I would like to get my banner links to line up properly. I have them inside of a table cell. However I can't get them to lineup flush to the bottom. This causes a small, empty space to exist between the banner and the content below. I've tried using VALIGN="BOTTOM" but that doesn't work.
-
Have you tried messing around with the cellpadding and cellspacing properties of the table?
-
Yes, here is the code:
<TABLE align = "CENTER" Class="linkback" width = "100%" cellpadding = "0" cellspacing="0">
<TR VALIGN="BOTTOM"><TD Class="NavLinkTitle"><a href="http://www.qksrv.net/" target="_top" >
<img src="http://www.qksrv.net/image" width="468" height="60" alt="Piggy Bank" border="0"></a>
</TD></TR>
-
I sorta figured a way to do it. I put the link on a seperate page and included it in a iframe.
-
HEY "DKCK" guess what ?? i have a solution for you, keep ur original code, there IS a way to get rid of that little space at the bottom of the page. just put a 'line break' after the image; this doesnt make sense but it works.
this should work fine:
<TABLE align="CENTER" width="100%" cellpadding="0" cellspacing="0">
<TR>
<TD><a href="" ><img src="something.gif" width="468" height="60" alt="Piggy Bank" border="0"></a><br>
</TD>
</TR>
</table>
-
Thanks for the answer. However the <IFRAME> works better for me because I can control which ads will be shown and how often.