MyBB Community Forums

Full Version: Fix Quote
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Everything is working on my forum, only when you "quote" it goes out of the border when the text is to long, so it doesn't fit.

Example: http://www.forum.revolutiongamers.co.uk/...d=41#pid41

How do I fix this?

Thank you,

~ Escobar
It seems when 'Neutro'  typed it in the first post, the spaces between words were replaced with non-breaking spaces. This prevents the blockquote from wrapping the text. I don't know how this happened, but it means every time it is quoted it will repeat the behavior.

The best way to fix this is probably edit the post and see what's going on their, at worst you will have to re-type it.
try adding the following code to global.css of your theme and check... you might have to Hard Refresh (Ctrl+F5) the page to see the changes...

.post_body blockquote span {
    word-wrap: break-word !important;
}
Thank you! works like a charm.