@luvharris: ok I got it. It’s because of the following css in your Custom CSS box, where you have made white background for current page. So, your can either change that background color or add text color in the following css:
/* For menu bar color – current page */
#header-menu .menu .current-menu-item > a,
#header-menu .menu .current-menu-ancestor > a,
#header-menu .menu .current_page_item > a,
#header-menu .menu .current_page_ancestor > a {
background-color: White; }
Maybe just change background color like this:
/* For menu bar color – current page */
#header-menu .menu .current-menu-item > a,
#header-menu .menu .current-menu-ancestor > a,
#header-menu .menu .current_page_item > a,
#header-menu .menu .current_page_ancestor > a {
background-color: #86cf86;
}
Or maybe you want to keep the background color white but make the text color green, then it will be as:
/* For menu bar color – current page */
#header-menu .menu .current-menu-item > a,
#header-menu .menu .current-menu-ancestor > a,
#header-menu .menu .current_page_item > a,
#header-menu .menu .current_page_ancestor > a {
background-color: #fff;
color: #86cf86;
}