Re: links longer than page width!
Got it somewhat.
Edit style.css file in themes and enter
1)To align text both sides
.post {text-align: justify;}
2)To prevent overflow
.post code {
overflow: auto;
display: block;
height: auto;
max-height: 200px;
white-space: normal;
padding-top: 5px;
padding-bottom: 5px;
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
line-height: 1.3em;
background: #ffffff;
margin: 2px 0;
}
Sill one more thing – how to remove hyperlink in the text entered. That is why <a href="
etc gets added to text I enter between code tag.