hey here is my blog http://www.techblogonline.com check out the articles they look strange, the spaces are to long between the words, whats wrong with it?
You have it set as fully justified in your style sheets, if you set the text left justified it'd look less weird. Set your text-align: justify; to text-align: left;
more specifically in the file: http://techblogonline.com/wp-content/themes/mushblue-10/style.css The part: #content { width: 550px; float: left; display:inline; text-align: justify; padding: 10px; margin: 8px; } Code (markup): should be #content { width: 550px; float: left; display:inline; text-align: left; padding: 10px; margin: 8px; } Code (markup):