I have a problem with noob. I have a long line of text (with spaces) in the <p> .
<p>
The line simply continues forever and will not end or break at the end. That's what I'm doing:
http://jsfiddle.net/lordzardeck/RmFkk/
you are affected by the style in ext-all.css (line: 21)
.x-grid-cell-inner { white-space: nowrap; }
You probably want to do something like:
.chat-message p { white-space:normal; }