IE vs. Firefox

Used the following and it looks fine on IE, but with firefox and chrome the captions are bunched under the first photo. What can I do to correct this?

Sorry forgot to post this…

<table align=“center”>
<tr>

		&lt;td&gt;&lt;img src="images/MiniRay.jpg" width="200" height="200" 
		&lt;/td&gt;
		
		&lt;td&gt;&lt;img src="images/MiniPak.jpg" width="200" height="200"
		&lt;/td&gt;
        
        &lt;td&gt;&lt;img src="images/Beard3.jpg" width="200" height="200"
		&lt;/td&gt;
        
        &lt;tr&gt;            
        
		&lt;/tr&gt;		
		
		&lt;td&gt;
			&lt;center&gt;&lt;b&gt;Richard Ray&lt;/center&gt;
		&lt;/tr&gt;
			&lt;td&gt;
			&lt;center&gt;&lt;b&gt;Larry Bateham&lt;/center&gt;
		&lt;/tr&gt;
			&lt;td&gt;
			&lt;center&gt;&lt;b&gt;Keith Wills&lt;/center&gt;
		&lt;/tr&gt;

</table>

You’ve just got your <tr>s and <td>s a little muddled. Try making these amendments:

<table align=“center”>
<tr>

<td><img src=“images/MiniRay.jpg” width=“200” height=“200”
</td>

<td><img src=“images/MiniPak.jpg” width=“200” height=“200”
</td>

<td><img src=“images/Beard3.jpg” width=“200” height=“200”
</td>

<tr><— Delete this

</tr>
<tr><— Add this
<td>
<center><b>Richard Ray</center>
</tr><—Change this to </td>
<td>
<center><b>Larry Bateham</center>
</tr><—Change this to </td>
<td>
<center><b>Keith Wills</center>
</td><— Add this
</tr>

</table>

Thanks…feeling stupid AGAIN.

No need to feel stupid. Sometimes you read what you think ought to be there, rather than what actually is there (or at least, I do :)). It always helps to have a fresh pair of eyes look at the problem.

Just seems my problems are always something very obvious, and maybe I rush to too quickly for help. Then again if you look at my site, it’s an embarrassment, but I enjoy keeping it up. Would like to learn more and take courses, but I am living on SS, and as much as I hate to say it, can’t stay awake much past 10PM (classes available at a CC on weeknights). Thanks again…

Yeah the code is messed up alittle bit, but maybe you should use a visual editor so it will code for you :slight_smile: