You will have to get a little dirty and edit some code...
It's fairly clear, if you've edited code before (actually it's VERY clear) - but if this is all greek, then you may want to get someone to help you (or you will have quite a learning curve).
Basically, take EVERYTHING from the right side -- you can tell it's the right side because the code is commented -- and there is a new table that starts here...
Start commenting out sections (look for {include file...} or {if} tags... you can find the end of an expression by {/if} or other closing tag.
If you are not using the modules, comment them out. Make sure are COMPLETELY backed up (mySQL as well as all the site files) before you do anything. My routine: backup MySQL using the x-cart admin. THEN via SSH, make a tarball (.tgz) and then dump it down to your hard drive. keep the .tgz file on your server just in case... then once your mods are happy, trash it. If something goes terribly wrong, a very simple tar -xzvf expands your .tgz into your site. yeah, you need many skills to do this... that's how some of the guys here make a living. Some of us have these skills and do not do it professionally (just for own businesses - but we could...) PS -- I have owned x-cart for one week... you'll get it... stick with it! Learn what you have to so that the rest of this is automatic.
Code:
{* THIS IS WHERE THE RIGHT COLUMN ITEMS START *}
{* FIND THE MODULES THAT YOU WANT TO MOVE *}
{* RESPECT THE if-else tags *}
<TD width="20"></TD>
<TD width="150" valign="top">
{if $active_modules.SnS_connector && $sns_collector_path_url ne ''}
{include file="modules/SnS_connector/button.tpl"}
{/if}
{if $active_modules.Feature_Comparison ne "" && $comparison_products ne ''}
{ include file="modules/Feature_Comparison/product_list.tpl" }
{/if}
{if $active_modules.Users_online ne "" and $users_online}
{ include file="modules/Users_online/menu_users_online.tpl" }
{/if}
{ include file="customer/menu_cart.tpl" }
{if $login eq "" }
{ include file="auth.tpl" }
{else}
{ include file="authbox.tpl" }
{/if}
{ include file="news.tpl" }
{if $active_modules.Interneka ne ""}
{ include file="modules/Interneka/menu_interneka.tpl" }
{/if}
{ include file="poweredby.tpl" }
[img]{$ImagesDir}/spacer.gif[/img]
</TD>
<TD width="6"></TD>
</TR>
</TABLE>