You forgot the surrounding <divs> for the widget_post_userinfo. That whole div needs to be moved inside the other div. You should have something like:
HTML Code:
<div class="cms_widget_post_comment widget_post_comment">
<div class="cms_widget_post_userinfo widget_post_userinfo">
all the stuff inside this div also......
</div>
<vb:if condition="$article['showtitle'] OR $article['settingsforboth'] == 2">
etc.
Then in additional.css:
HTML Code:
.widget_post_userinfo {
float: left; height: 40px; margin-right: 40px;
}
.widget_post_comment {
margin-left: 0;}