I've recently launched a responsive version of my website http://www.dev-hq.net/ -- my issue is the division shown on the side of the pages which shows a list of new and hot tutorials ("What's Hot" and "What's New"). My issue is that because all the divisions are percentage width, and the content that needs to display in them is rather long. As you can see by my current solution if you look at the page - I've gone with truncating the values to a fixed length. The problem with this is that if the user is viewing on a small resolution, the result is the list items wrapping (which looks horrible) and if the user is viewing on a larger resolution, then the list items look way too short for the division. Going through this logic would make me think that a server side solution is out of the question - so my question is, how can I deal with this?
My markup is basically, this (for exact, you can see the link above):
<ul class="WhatsHot">
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
</ul>
<ul class="WhatsNew">
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
<li><a href="#">Long link text</a></li>
</ul>
Any help would be much appreciated,
Regards,
Joe