Noel, I have a two-column layout with a fixed width second column (250px). I don't want the second column to expand at all. The words will wrap as they should as long as they are short words. My issue is with very long "words" such as URLs.
For example, I have a Recent Comments section on a page, and there's one of the entries looks like this:
QUOTE
Jake on
Jack White: "Nobodygirl, here's the permanent link to that:
http://www.thesmokinggun.com/archive/jackw...ite1.html"Well, what happens is that big long "word" (http://www.thesmokinggun.com/archive/jackwhite1.html) messes up my layout by expanding the second column to fit that word. (This is only in IE; Mozilla truncates the text, as it should per the spec.)
Oscar, I assume you are referring to the wordwrap function in php? In an MT template, how can I do the equivalent of saying:
CODE
<?php echo(wordwrap('<$MTCommentBody remove_html="1"$>', 20, " ", 1)) ?>;
Because that doesn't seem to work...