View Single Post
  #2  
Old 07-25-2009, 06:58 PM
 
steve.thompson steve.thompson is offline
 

eXpert
  
Join Date: Feb 2009
Location: Sydney, Australia
Posts: 302
 

Default Re: Size & number or right side menus

Hi Chris.

You don't say how you've added the new box.
The way I've added a box to show my SSL is:

Create new file skin1/secure.tpl
Code:
{capture name=menu}   <!-- GeoTrust QuickSSL [tm] Smart Icon tag. Do not edit. --> <center> {literal} <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" SRC="//smarticon.geotrust.com/si.js"></SCRIPT> {/literal} </center> <!-- end GeoTrust Smart Icon tag -->   {/capture} {include file="customer/menu_dialog.tpl" title="Site Secured by" content=$smarty.capture.menu}

Then edit skin1/customer/home.tpl
Towards the bottom of the file, you'll find a line which includes
Code:
<div id="right-bar">
This is the start of the right side box area.

I've added a call to the secure.tpl file here, below the authentication box:
Code:
{include file="customer/menu_cart.tpl" } {if $login eq "" } {include file="customer/auth.tpl" } {else} {include file="customer/authbox.tpl" } {/if} {include file="secure.tpl" }

Steve.
__________________
X-Cart Gold 4.2.1 / 4.4.2
X-AOM, X-SpecialOffers
Download Expander 2.1.3 / 2.2.0
Reply With Quote