View Single Post
  #3  
Old 07-18-2007, 06:11 AM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: Left and Right columns in checkout

Ashley,

First, you don't need to bump a question in 70 minutes...

Next, are you using Fast Lane Checkout?

If so, your main template for FLC is:

/skin1/modules/Fast_Lane_Checkout/home.tpl

It's ALREADY in 3-column format -- with a spacer image as a placeholder.

Code:
<table width="100%" cellpadding="0" cellspacing="0"> <tr> <td valign="top" width="150"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /></td> <td width="6">&nbsp;</td> <td valign="top" align="center"> <table cellpadding="0" cellspacing="0" width="700"> <tr> <td align="left"> <!-- central space --> {if $checkout_step ge 0} {include file="modules/Fast_Lane_Checkout/tabs_menu.tpl"} {include file="dialog_message.tpl"} {include file="modules/Fast_Lane_Checkout/home_main.tpl"} {else} {include file="dialog_message.tpl"} {include file="modules/Fast_Lane_Checkout/home_main.tpl"} {/if} <!-- /central space --> &nbsp; </td> </tr> </table> </td> <td width="6">&nbsp;</td> <td valign="top" width="150"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /> </td> </tr> </table>

FIND:
Quote:
<td valign="top" width="150"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /> </td>

And instead of the spacer image, put your content.

Is that what you want?
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote