View Single Post
  #1  
Old 10-03-2005, 07:35 AM
  trams's Avatar 
trams trams is offline
 

Newbie
  
Join Date: Oct 2005
Posts: 3
 

Default 2 or 3 Menu Styles

ok... As it stands out of the box, when I change menu.tpl it changes all the menus in the system. Which makes perfect sense.

But I would like to have a few different menu styles to choose from. So far I have created menu2.tpl and menu3.tpl each with it's own styles I defined in the css document. Basically exact copies of menu.tpl just with the colors different.

Now I see where (lets use authbox.tpl as an example) it calls the variable referencing menu.tpl.

Code:
{* $Id: authbox.tpl,v 1.23 2004/06/24 09:53:29 max Exp $ *} {capture name=menu}

I am guessing I need to create new variables, like: menu2, menu3 so when I have

Code:
{* $Id: authbox.tpl,v 1.23 2004/06/24 09:53:29 max Exp $ *} {capture name=menu2}

It uses menu2.tpl instead of plain old menu.tpl

Problem is, I can not find where the variable "menu" is being defined so that I can add menu2 and menu3 underneath it. I hope all this makes some sort of sense I am not a programmer by any means. I am a designer that knows a little about code. If anyone has any insight it would be greatly appreciated. Thanks in advance.
Reply With Quote