Try to open postbit_legacy template, then Find :
PHP Code:
<div class="textcontrols floatcontainer">
And remove it . Then remove the closing "div" for it which is located under this :
PHP Code:
<!-- </div> -->
Note: You can change the class istead of removing it.
Now, To change the edit button, find :
PHP Code:
<a class="editpost" href="{vb:raw post.editlink}" name="vB::QuickEdit::{vb:raw post.postid}"><img src="{vb:raw vboptions.cleargifurl}" id="editimg_{vb:raw post.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
And replace it with :
PHP Code:
<a class="editpost" href="{vb:raw post.editlink}" name="vB::QuickEdit::{vb:raw post.postid}"><img src="{vb:stylevar imgdir_button}/edit.gif" id="editimg_{vb:raw post.postid}" alt="{vb:rawphrase edit_delete_message}" /></a>
So, can you now see how to change the rest ?
My regards.