Hello,
Go to Dashboard -> Appearance -> Customize -> Theme Options -> Theme General Options -> paste code in Custom CSS box and save –
.navbar-default .navbar-nav > li {
margin-right: 0px !important;
}
.navbar-default .navbar-nav > li > a {
font-size: 13px;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .dropdown-menu .active a {
background-color: #0000b0 !important;
}
Thanks.
No change from that.
Tried to adjust the font size, did not change the size of anything.
Active button does not change color. If I change the color code it does nothing.
Thank you
Hello,
Replace the above code with below code –
.navbar-default .navbar-nav li {
margin-right: 0px !important;
}
.navbar-default .navbar-nav li a {
font-size: 13px;
}
.navbar-default .navbar-nav .active a, .navbar-default .navbar-nav .active a:hover, .navbar-default .navbar-nav .active a:focus, .dropdown-menu .active a {
background-color: #0000b0 !important;
}
Thanks.