Hey so I'm using one of your themes, and when I publish an ask (Normally long asks) on my blog it stretches across the whole screen instead of wrapping around like normal. Any way I can fix this?
That happens when the word is too long for one line, because browsers don’t just wrap words automatically. You can force them to wrap long words like that (by breaking them up at the end of the line) and add a hyphen, by finding this in your code
#posts {
and adding this codebit
-ms-word-break: break-all; word-break: break-all; word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; -ms-hyphens: auto; hyphens: auto;
like so
#posts { width:500px; height: auto padding:10px; -ms-word-break: break-all; word-break: break-all; word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; -ms-hyphens: auto; hyphens: auto; background-color: {color:posts}; border: 1px solid {color:border}; }
thank you for making me aware of the issue, I think I’ll just add it to the codes from now on :)











