View Single Post
  #4  
Old 12-05-2004, 11:34 AM
  Zaja's Avatar 
Zaja Zaja is offline
 

X-Adept
  
Join Date: Mar 2004
Location: The Universe is my home
Posts: 420
 

Default

You can use Smarty "Cycle" function in menu.tpl, this makes it easy to alternate between two or more styles.
Just replace (menu.tpl):
Code:
<TD class="VertMenuTitle">
with this code:
Code:
<TD class="{cycle values="VertMenuTitle,VertMenuTitle2,VertMenuTitle3,VertMenuTitle4"}"

Then set up new styles definition in skin1.css:
Code:
.VertMenuTitle2 { BACKGROUND-COLOR: ##FF80C0; COLOR: #330000; FONT-WEIGHT: bold; } .VertMenuTitle3 { BACKGROUND-COLOR: #FFFF80; COLOR: #330000; FONT-WEIGHT: bold; } .VertMenuTitle4 { BACKGROUND-COLOR: #9FFFFF; COLOR: #330000; FONT-WEIGHT: bold; }
__________________
_/ _/ _/ _/ _/ _/ _/ _/ _/

7dana.com
Reply With Quote