saguaros
Hi Saguaros, thanks for helping.
I'll send my login info privately.
As for the class/code changes, I added the following codes in the custom.css file:
TO DARKEN MENU LETTERS IN WHITE BACKGROUND (every page except homepage)
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > span:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > span:focus {
color: #111111;
font-weight: 500;
}
WHICH REQUIRED A FOLLOW-UP CODE TO LIGHTEN THE HOMEPAGE MENU
.home .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > span:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > span:focus {
color: #ffffff;
font-weight: 500;
}
But the ".home" class does not seem to have the desired effect for this particular code/function, as it ends up whitening all the pages, not just the homepage.