Can you check out this demo: http://jsfiddle.net/wd9G8/1/
I've been encountering an issue with the "Problem Widget" where adding content causes the bottom row of tds to expand.
To elaborate, I'm trying to insert a div with a slideshow plugin as shown below:
<div id="my-slideshow" class = "slides">
<ul class="bjqs">
<li><a href=""><img src="images/photos/pic.jpg" /></a></li>
<li><a href=""><img src="images/photos/pic.jpg" /></a></li>
</ul>
</div>
The content within the TD is not exceeding the size of the TD itself. The TD should not be struggling to accommodate the content. Even by adding a couple of br tags, you'll notice the bottom row expanding.
Are there any glaring mistakes in my approach? (besides using tables for layout).
Your assistance on this matter would be greatly appreciated.