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

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I can come up with two options:

One is to do it yourself using javascript as described here:

Calculate text width with Javascript

I don't think there is any way to determine the width of the text until the browser actually renders the text.

Make sure you don't display: none it, or the browser won't actually render it and you can't determine the width.

The second is to let CSS do it for you; it's easier, but you lose pretty much all flexibility:

If you're willing to let CSS guess at how to cut off your text into ellipsis, you can try text-overflow: ellipsis

http://www.quirksmode.org/css/textoverflow.html

link|improve this answer
The text-overflow property works a treat - thanks :D – Joesavage1 Dec 4 '11 at 10:28
Oh hang on a minute - no it doesn't. I'm really keen on using the property - but it isn't working in my CSS for some reason (the text just gets cut off now due to the hidden overflow). – Joesavage1 Dec 4 '11 at 10:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.