View Single Post
  #3  
Old 01-28-2008, 04:09 AM
 
balinor balinor is offline
 

Veteran
  
Join Date: Oct 2003
Location: Connecticut, USA
Posts: 30,253
 

Default Re: Color Themed Site/Pages

You don't need to create a new template, you can simply call a different stylesheet for each static page. It would look something like this:

{if $smarty.get.pageid eq "5"}
<LINK rel="stylesheet" href="{$SkinDir}/skin1.css" type="text/css">
{elseif $smarty.get.pageid eq "6"}
<LINK rel="stylesheet" href="{$SkinDir}/skin2.css" type="text/css">
{/if}

That wil show one css file for page 5, and a different one for page 6. You would use this in customer/home.tpl in the head.
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
Reply With Quote