Hi zmand13
Everything you are asking in 4 points can be accomplished using less files and custom.css file
My suggestion is to open a new topic for each single point and we will help you to make needed changes on your website.
- How can I change menu items font color for both menu bars, main navigation and top navigation?
You have megamenu.less in this folder /templates/ja_alumni/less/
This file manages color assigned to megamenu and topbar menu
example:
.mega-nav > li.active > a,
.dropdown-menu .mega-nav > li.active > a {
color: @brand-primary;
}
color: @brand-primary; is defined in ths file /templates/ja_alumni/less/variables.less
@brand-primary: #a22631;
So after you applied needed changes to the 2 files to choose your color for specific menu behaviour you should compile less to css from template manager to have it moved in css files.
You can apply all needed changes in file custom.css, this file should be created in this folder /templates/ja_alumni/css/
and such file will be not overwritten by templates updates,
Hope it helps.
Regards