Well, look at it. The first (and only) post. For example, the word "information" is cut, and not displayed as a "whole" word. Same occurs with other words. Why is that?
Well, look at it. The first (and only) post. For example, the word "information" is cut, and not displayed as a "whole" word. Same occurs with other words. Why is that?
It looks fine to me in Firefox 3 on a Mac. What browser version and type of computer are you using? Can you post a screenshot somewhere so we can see what you're seeing?
Check your CSS... disable the "word-break" property for <p> elements...
Google "CSS word-break"
Zoolini, look at the the last letter of each line in the post text. Some words wrap around to the next line and that looks horrible!
IE is having a spaz. Start making your adjustments on line 20.
div,p{white-space:normal;word-break:break-all;word-wrap:break-word;}
Here's a screenshot of what I see in Firefox 3:
Edit: Judging by other's posts the problem is in IE. I took a look at your CSS and posted what I hope is the solution below.
Remove these line from your CSS:
div,p{white-space:normal;word-break:break-all;word-wrap:break-word;}
table th,table td{word-wrap:break-word;overflow:hidden;}
Thank you! Go it, I changed break-all for keep-all.
:)
Great! If you would please mark this thread as "resolved" it would be appreciated. Helps everyone keep better track of whose issues are still outstanding. Thanks!
This topic has been closed to new replies.