Hi,
As far as I know, the page title and menu subtitle are always the same as each other by design. You can disable the subtitle, if you wish, on the main menu by this method:
in template.css (line 788) change
#ja-mainnav span.menu-desc {
clear:both;
color:#A2893E;
display:block; <— CHANGE THIS LINE
font-size:80%;
font-weight:normal;
line-height:normal;
padding:0 10px;
}
to this:
#ja-mainnav span.menu-desc {
clear:both;
color:#A2893E;
display:none; <— TO THIS
font-size:80%;
font-weight:normal;
line-height:normal;
padding:0 10px;
}
Hope this helps,
Jason.