In 4.1.6, I'm trying to shorten the registration and anonymous checkout pages to reduce scrolling.
To that end, I'm trying to get:
HTML Code:
{include file="main/register_shipping_address.tpl" userinfo=$userinfo}
{include file="main/register_additional_info.tpl" section='A'}
{if $config.General.disable_cc ne "Y"}
{include file="main/register_ccinfo.tpl"}
{/if}
{include file="main/register_account.tpl" userinfo=$userinfo}
{if $active_modules.Special_Offers and $usertype ne "C"}
{include file="modules/Special_Offers/customer/register_bonuses.tpl"}
{/if}
{if $active_modules.News_Management and $newslists}
{include file="modules/News_Management/register_newslists.tpl" userinfo=$userinfo}
{/if}
{if $active_modules.Image_Verification and $show_antibot.on_registration eq 'Y' and $display_antibot}
{assign var="antibot_err" value=$reg_antibot_err}
{include file="modules/Image_Verification/spambot_arrest.tpl" mode="advanced" id=$antibot_sections.on_registration}
{/if}
to show up to the right of
HTML Code:
{include file="main/register_personal_info.tpl" userinfo=$userinfo}
{include file="main/register_billing_address.tpl" userinfo=$userinfo}
{include file="main/register_contact_info.tpl" userinfo=$userinfo}
Everything I've tried has been to no avail.

No table design I've used has worked yet.
Anybody have pointers on how to make it happen?????
TIA