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"> </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 -->
</td>
</tr>
</table>
</td>
<td width="6"> </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?