Eliminating spacing in caption

When I use this code the two line caption has a space between them. What do I need to change to eliminate that?

<table align=“center”>

<tr>
<td><a href=“thumbs/Fisherthumb.jpg”><img src=“images/Fisher.jpg” width=“275” height=“185” alt=“The Fisher gang, Scott Warner, Me, Jim Lewellen and Fred Brust”></a></td>
</tr>
<tr>

<td>
<p>The Fisher Labs Crew! Scott Warner,</p>
<p>yours truly, Jim Lewellen and Fred Brust</p>
</td>
</tr>
</table>

[FONT=Verdana]Try changing this

<p>The Fisher Labs Crew! Scott Warner,</p>
<p>yours truly, Jim Lewellen and Fred Brust</p>

to this

<p>The Fisher Labs Crew! Scott Warner,<br/>
yours truly, Jim Lewellen and Fred Brust</p>

The gap is because you have it as two paragraphs, when you only need a line break.[/FONT]

Thank you very much…I am the first to say I am a real novice, but I have had my website going for two years and never knew this…I use <br> all the time, but never considered your </br> solution and I am most grateful. Sometimes great things come in little packages. Know that is hard for all you to understand, but each time I pick up one little tip, I feel so good. Thanks again. It’s one more question I won’t have to ask again (I think?)