Reputation: 85
I am trying to get a visible hamburger icon appear on a homepage's navbar. So far it is transparent. The code is below:
<nav class="navbar navbarcolor navbar-faded">
Home
Page 1
Any suggestions will be appreciated.
Upvotes: 0
Views: 62
Reputation: 534
Add following to your css
.icon-bar {
background-color: black;
}
Upvotes: 1