How to move?

iPodHacker

New Member
Hi, is there a way I can move this:
p1oj9.png

from there to here:
p2jt0.png
??
I'm using vBulletin 3.6.8

Thanks
 
First, nice skin! I love element.

For the first part, try to remove everything inside the user info
Or leave a empty table.
Like this:
PHP:
<!-- user info -->
        <table cellpadding="0" cellspacing="$stylevar[cellpadding]" border="0" width="100%">
          <tr>
            <if condition="$show['avatar']">
              <td class="alt2"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a><td>
            </if>
            <td nowrap="nowrap"><div id="postmenu_$post[postid]">
                <if condition="$show['profile']"> <a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a> $post[onlinestatus]
                  <script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
                  <else />
                  $post[musername] </if>
              </div>
              <if condition="$post['usertitle']">
                <div class="smallfont">$post[usertitle]</div>
              </if>
              <if condition="$post['rank']">
                <div class="smallfont">$post[rank]</div>
              </if>
              <if condition="$show['reputation']">
                <if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower] </if>
                <div>$post[reputationdisplay]</div>
              </if>
            </td>
            <td width="100%">&nbsp;</td>
            <td valign="top" nowrap="nowrap"><div class="smallfont">
                <div>$vbphrase[posts]: $post[posts]</div>
                <if condition="$post['joindate']">
                  <div>$vbphrase[join_date]: $post[joindate]</div>
                </if>
                <if condition="$post['field2']">
                  <div>$vbphrase[location_perm]: $post[field2]</div>
                </if>
                <if condition="$post['age']">
                  <div>$vbphrase[age]: $post[age]</div>
                </if>
                <div style="padding:2px 0px 2px 0px;"></div>
                <div>$post[icqicon]$post[aimicon]$post[msnicon]$post[yahooicon]</div>
              </div></td>
          </tr>
        </table>
        <!-- / user info -->

And that second part, you want to remove the edit button? the post icon? I didnt get it.
 
Actually there's an option to do that. Go to vBulletin Options > Style & Language Settings. Then find "Use Legacy (Vertical) Postbit Template" and set it to "Yes".

It will autmatically go to the side if the theme supports it.
 
Back
Top