Hello conphill,
You should check that code in the validator. Your ul is not formed correctly along with several other errors that can easily be fixed.
Have a look at an
easy way for doing image captions. This keeps them together so they stay lined up.
After you fix your ul like this (see highlighted in red) -
Code:
</tr>
<tr>
<td width="15" background="http://campustapscom.ipage.com/Images/CollegeBarPageBox2_02.gif"></td>
<td width="624" background="http://campustapscom.ipage.com/Images/CollegeBarPageBox2_03.gif">
<img src="http://campustapscom.ipage.com/Images/campustapslogosmall.jpg" alt="BarPicture" id="barpics">
<p class="caption">Description</p>
<ul class="list">
<li> Monday-</li>
<li>Tuesday-</li>
<li>Wednesday-</li>
<li>Thursday-</li>
<li>Friday-</li>
<li>Saturday-</li>
<li>Sunday-</li>
</ul>
<div id="disqus_thread"><div style="display: none;" id="dsq-content-stub"><img title="DISQUS" alt="DISQUS" src="data:image/png;
Then you can put an id on the taps.com image and a class on the caption text so we can style them (see highlighted in green)
Then in your CSS, make these changes highlighted in red -
Code:
#barpics {
height: 39px;
width: 220px;
float: left;
}
.caption {
margin: 0 0 0 250px;
}
ul.list {
width: 100px;
float: left;
clear: left;
}