Mentioned and Tagged are coming from mods. If the mods don't have an option to disable these you can check their plugins in Products & Plugins in Admin CP.
See if they have a plugin on postbit_display_complete hook and if they do try disabling the plugin and they should go away. Make sure the rest of the mod works afterwards- they may have other code necessary to run on those plugins.
As for the rep bar find the code:
Code:
<vb:if condition="$show['reputation']">
<span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}" title="{vb:raw post.username} {vb:raw post.level}">
<vb:each from="reputationdisplay" value="row">
<img class="{vb:raw row.class}" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw row.posneg}{vb:raw row.imgext}" alt="" />{vb:raw row.rowend}
</vb:each>
</span>
</vb:if>
and MOVE it directly above the code:
Code:
<vb:if condition="$show['infraction'] OR $show['reppower']">
As for centering that is likely from your custom template... do you have a browser like Chrome or Firefox with Firebug? Best to learn how to use the "Inspect Element" tool in those browsers, right click on your avatar for example and it will tell you what code is causing it to be centered, then you can hopefully search templates for that code and edit or remove it. Impossible to tell what it is from a screenshot.
Bookmarks