views:

188

answers:

3

I am having a problem with a linked image.

<TR class="a"> 
    <TD><A href="http://CA_NB_1_1-pr.jpg" rel="lightbox"><IMG src="CA_NB_1_1-th-pr.jpg"><BR><BR></A></TD> 
    <TD class="hdsmlbr"><A href="http://127.0.0.1/odds/aptrqr2/view/1"&gt;35 Savoie Drive, Moncton, New Brunswick, Canada</A></TD>
</TR> 

This image has padding at the bottom of it that I cannot seem to find to kill. I have used CSS Reset from Yahoo to see if that helped, and even removed all CSS to see if I can locate the problem.

Using Firebug, I tried a few on the fly methods of nullifying the padding, but nothing seems to work.

Can anyone else figure out what the problem may be?

http://monkeylook.bendauphinee.com/

+3  A: 

It might be the two <br>'s...

peirix
+1  A: 

You're trailing your image with two break-tags: <BR><BR>. Those would give the same impression. Sure enough, when removed the "extra padding" vanishes.

Jonathan Sampson
+1  A: 

you have two newlines in your a tag? try this.

<TR class="a"> 
    <TD><A href="http://CA_NB_1_1-pr.jpg" rel="lightbox"><IMG src="CA_NB_1_1-th-pr.jpg"></A></TD> 
    <TD class="hdsmlbr"><A href="http://127.0.0.1/odds/aptrqr2/view/1"&gt;35 Savoie Drive, Moncton, New Brunswick, Canada</A></TD>
</TR> 
Tim