View Single Post
  #6  
Old 06-30-2004, 11:30 AM
 
Beaker Beaker is offline
 

Newbie
  
Join Date: May 2004
Posts: 9
 

Default

Quote:
Originally Posted by deftgroup
how exactly did you impliment that... could I see your categories.tpl?

Actually I utilized the head.tpl for that part since I wanted the buttons on every page. this is the final code for the table that holds the buttons. It is pretty big because of the rollover script being used. I just copied all the cells into each if/else statement and replaced the "on" state accordingly.

<table width="400" border="0" cellspacing="0" cellpadding="0" height="29">
<tr>

{if $smarty.get.cat eq "1"}

<td width="66" height="29">[img]/buttons/home_off.gif[/img]</td>
<td height="29" width="77">[img]/buttons/necklaces_on.gif[/img]</td>
<td height="29" width="67">[img]/buttons/earrings_off.gif[/img]</td>
<td height="29" width="73">[img]/buttons/bracelets_off.gif[/img]</td>
<td height="29" width="*">[img]/photos/holiday.gif[/img]</td>

{elseif $smarty.get.cat eq "2"}

<td width="66" height="29">[img]/buttons/home_off.gif[/img]</td>
<td height="29" width="77">[img]/buttons/necklaces_off.gif[/img]</td>
<td height="29" width="67">[img]/buttons/earrings_on.gif[/img]</td>
<td height="29" width="73">[img]/buttons/bracelets_off.gif[/img]</td>
<td height="29" width="*">[img]/photos/holiday.gif[/img]</td>

{elseif $smarty.get.cat eq "3"}

<td width="66" height="29">[img]/buttons/home_off.gif[/img]</td>
<td height="29" width="77">[img]/buttons/necklaces_off.gif[/img]</td>
<td height="29" width="67">[img]/buttons/earrings_off.gif[/img]</td>
<td height="29" width="73">[img]/buttons/bracelets_on.gif[/img]</td>
<td height="29" width="*">[img]/photos/holiday.gif[/img]</td>

{elseif $smarty.get.cat eq "4"}

<td width="66" height="29">[img]/buttons/home_off.gif[/img]</td>
<td height="29" width="77">[img]/buttons/necklaces_off.gif[/img]</td>
<td height="29" width="67">[img]/buttons/earrings_off.gif[/img]</td>
<td height="29" width="73">[img]/buttons/bracelets_off.gif[/img]</td>
<td height="29" width="*">[img]/photos/holiday_on.gif[/img]</td>

{else}

<td width="66" height="29">[img]/buttons/home_on.gif[/img]</td>
<td height="29" width="77">[img]/buttons/necklaces_off.gif[/img]</td>
<td height="29" width="67">[img]/buttons/earrings_off.gif[/img]</td>
<td height="29" width="73">[img]/buttons/bracelets_off.gif[/img]</td>
<td height="29" width="*">[img]/photos/holiday.gif[/img]</td>

{/if}

</tr>
</table>
Reply With Quote