fixing CSS seems like the best idea.
vs. adding a script before discussion render event or refine the elements to check in the jquery.
http://stackoverflow.com/questions/5720192/how-to-truncate-links-to-certain-length-using-any-of-the-javascript-or-jquery
jQuery(".Message a").each(function(i, value) { var $link = jQuery(value); var text = $link.text(); if(text.length > 25) { $link.text(text.substring(0, 21) + "..."); } });
I'd much rather be able to scan full links rather than truncating though.
Pragmatism is all I have to offer. Avoiding the sidelines and providing centerline pro-tips.
Comments
fixing CSS seems like the best idea.
vs. adding a script before discussion render event or refine the elements to check in the jquery.
http://stackoverflow.com/questions/5720192/how-to-truncate-links-to-certain-length-using-any-of-the-javascript-or-jquery
I'd much rather be able to scan full links rather than truncating though.
Pragmatism is all I have to offer. Avoiding the sidelines and providing centerline pro-tips.