• Resolved ronverzn

    (@ronverzn)


    Hi Mr Bavota!

    I love your theme!

    I am checking this basic version out for a client and found that when I scroll down the navigation bar turns from somewhat transparent to a little less transparent. Is there a way to turn this off and keep it a little bit more transparent?

    Merci/thanks!

    Best wishes,
    Ron

Viewing 4 replies - 1 through 4 (of 4 total)
  • That is by design. Turning it off means changing the CSS:

    .navbar-inverse.black {
       background: rgba(0, 0, 0, 0.85);
    }
    Thread Starter ronverzn

    (@ronverzn)

    Thank you very much, very helpfull.

    Hello bavota,

    I change the CSS by changing the opacity to 0 but the black background still shows when on the pages of my site. Any suggestions?

    https://myhonestygray.com/

    V/r
    Ashley

    Was able to figure out the code I forgot to change to transparent as well:

    Orginal:
    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
    }
    Update:
    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: transparent;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Navigation bar changes transparancy’ is closed to new replies.