• Hey guys, What code could I use to change the static nav color(not on mouse over). Specifically, the tan color on the word services.

    Reference: brendenhorn.us/mgd242/

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hii brenvy,

    Go to Dashboard -> Appearance -> Customize -> Theme Options -> Theme General Options -> paste the 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, .dropdown-menu .active a {
        background-color: #59b69c !important;
    }

    Thanks.

    Thread Starter brenvy

    (@brenvy)

    Seems to have not worked and I still have that tan color. Also, using your direction of:

    “Dashboard -> Appearance -> Customize -> Theme Options -> Theme General Options -> paste the below code in Custom CSS box and save”

    Isn’t working for me and I get the error “invalid value” when trying to edit my custom css. (I have a topic open on this and have updated it with a screenshot)

    Link to said above topic: https://www.ads-software.com/support/topic/error-invalid-value-when-customizing-css/

    I found I have to use Appearance –> Theme Options –> General Options –> edit/paste/save code into bottom custom css box.

    Hii brenvy,

    Yes you paste/save code into bottom of custom css box.

    You can also paste code in style.css file after line no. 2463 and save the file.

    Code for change nav static color –

    .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: #59b69c !important;
    }

    Thanks.

    Thread Starter brenvy

    (@brenvy)

    This worked btw, thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change nav static color?’ is closed to new replies.