Hello,
Go to Dashboard -> Appearance -> Customize -> Theme Options -> Theme General Options -> paste below code in Custom CSS box and save –
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #8a6d3b !important;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus{
color: #8a6d3b !important;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
color: #8a6d3b !important;
}
.dropdown-menu > li > a {
color: #8a6d3b !important;
}
.navbar-default .navbar-nav > li > a {
color:#19a8f0 !important;
}
You can change the color as per your requirement.
Thanks
What about the color of the boxes behind the links, can they be changed?
Hello,
Paste below code in Custom CSS box and save –
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
background-color: #31a3dd !important;
}
.dropdown-menu {
background-color: #31a3dd !important;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
background-color: #31a3dd !important;
}
Thanks.