I want to have a little block beneath the active page (and hover), in the navbar ofcourse. It should look like this:
This is the code that I have so far. I think that the border-bottom needs to be very small, with a big thickness.
.navbar .navbar-nav > li > a:hover {
color:#008080;
background:rgba(255,255,255, 0.0);
border-bottom: 5px solid rgb(255, 128, 0);
}
I hope someone can help with this.