molkman said:
Okay, but server-side would change it on the whole site, right? I just want it in certain places.
Server-side you can choose where to modify the content like that. For example if you are running PHP:
php code
<?php
if(/* wrap $content HARD! */)
{
echo preg_replace( "~.{70}~", "\\0<br>", $content );
}
else
{
echo $content;
}
?>
That will insert a <br> every 70 characters depending on what you put for the if's condition.