Hello okiedokie,
Please open your file template.css and go to line 466th, you will see this css code:
<blockquote>
.article-tools {
clear:both;
color:#6D644C;
display:block;
font-family:Georgia,”Times New Roman”,Times,serif;
margin:3px 0pt 10px;
overflow:hidden;
position:relative;
white-space:nowrap;
width:100%;
}
</blockquote>
Please add white-space: normal; to that:
<blockquote>
.article-tools {
clear:both;
color:#6D644C;
display:block;
font-family:Georgia,”Times New Roman”,Times,serif;
margin:3px 0pt 10px;
overflow:hidden;
position:relative;
white-space:normal;
width:100%;
}
</blockquote>
and your issue will be fixed.