Posted on : 2018-06-28 04:29:55 View Type: public
Ateeq Rafeeq

Your main navigation links color is white that's why they are not visible on white background i have changed the color of parent text navigation from white to tihs color from your logo #214695
You can also change the main text color by going wp-admin >> appearance >> customizer >> Header >> header styling.
Further you can change Sub menu background color the same color as your parent text color so things match .
To keep the background color of mobile navigation same as your logo color and text color white you can add following CSS which i already added in your wp-admin >> appearance >> customizer >> additional css
Following CSS is only for the mobile CSS thanks.
@media only screen and (max-width: 40em) {
.top-bar ul li a:hover, .top-bar ul .is-active a, .top-bar ul li a {
border-bottom: 0px !important;
color: #FFF !important;
}
.top-bar ul {
width: 100%;
margin-top: 10px;
background-color: #214695;
}
}