Customizing navbar :::PORTFOLIO

Hello all,
I’m trying to change my “” li “” elements and " ICON BAR " colors in my navbar. But I’m not sure where I’m going wrong I couldn’t able to change colors. Could anyone help me with this issue :frowning: !!

PORTFOLIO

Thanks !!!

to change li colors do this:

.navbar-inverse .navbar-nav>li>a {
  color: white;
}

to change icon bar color do this:

.navbar-inverse .navbar-toggle .icon-bar {
  color: pink;
}

This is easy when you get used to your browsers developer tools. Happy Coding!

Cool ! thanks for you suggestion but I was unable to change my icon-bar color

.navbar-inverse .navbar-toggle .icon-bar {background-color: #f16059;}
1 Like