Hi karim1104,
Is there any other style, like JA Fixel – Home Green, existing in template manager? If yes, try to check the menu assignment section of its style, it maybe assigned to the menu item which you want to have Green theme.
For the font in main navigation bar, you can change in LESS or CSS file
– With LESS: you open file: templatesja_fixellessvariables.less, look for this rule:
@TPLNWDemiBold: 'novecento_widedemibold', @sansFontFamily;
change to your desired font and go to backend > compile less to css
– For CSS: you can create a new file named: custom.css in /templates/ja_fixel/css folder and add your own css rule here:
.t3-mainnav .navbar {
font-family: your_desired_font;
}
Hope these help.