#27255

My particular problem was being caused by a very long url in a table cell. The long url was not wrapping and it was pushing the right side of the table cell past the right edge of the document.

I was able to solve it by adding style=”word-wrap: break-word” as an attribute to the td element in the table. This caused the url to force break at the end of the table cell and everything else then wrapped as expected.

Thanks for the quick response.