Here you go.
The following instructions are based on the DEFAULT color styling (Green). If you have set the default to another color then the color codes will be different.
With the TransMenu you have two colors….GREEN, of course and then the ORANGE rollover color you can change.
The GREEN color of the Transmenu is controlled in three areas:
ja-transmenuh.css
Line 141
#ja-transmenu a.jahover {
color: #6DA43A;
background: url(../images/arrow2.gif) no-repeat bottom center;
}
Line 154
#ja-transmenu a.mainlevel-trans:hover,
#ja-transmenu a.mainlevel-trans:active,
#ja-transmenu a.mainlevel-trans:focus {
color: #6DA43A;
background: url(../images/arrow2.gif) no-repeat bottom center;
}
And Line 176:
#ja-transmenu a.havechild-mainlevel-trans-first:hover,
#ja-transmenu a.havechild-mainlevel-trans-first:active,
#ja-transmenu a.havechild-mainlevel-trans-first:focus,
#ja-transmenu a.mainlevel-trans-first:hover,
#ja-transmenu a.mainlevel-trans-first:active,
#ja-transmenu a.mainlevel-trans-first:focus {
color: #6DA43A;
background: url(../images/arrow2.gif) no-repeat bottom center;
}
NOW FOR THE ORANGE:
Line 133
#ja-transmenu a.havechild-mainlevel-active-trans,
#ja-transmenu a.havechild-mainlevel-active-trans:hover,
#ja-transmenu a.havechild-mainlevel-active-trans:active,
#ja-transmenu a.havechild-mainlevel-active-trans:focus {
color: #D25D23;
background: url(../images/arrow3.gif) no-repeat bottom center;
}
Line 146
#ja-transmenu a.jahover-active {
color: #D25D23;
background: url(../images/arrow3.gif) no-repeat bottom center;
}
And line 161
#ja-transmenu a.mainlevel-active-trans,
#ja-transmenu a.mainlevel-active-trans:hover,
#ja-transmenu a.mainlevel-active-trans:active,
#ja-transmenu a.mainlevel-active-trans:focus {
color: #D25D23;
background: url(../images/arrow3.gif) no-repeat bottom center;
}
/* First item */
#ja-transmenu a.havechild-mainlevel-active-trans-first,
#ja-transmenu a.mainlevel-active-trans-first {
color: #D25D23;
background: url(../images/arrow3.gif) no-repeat bottom center;
}
Have fun.
John.