The nav-link Tag Helper does not work correctly with Bootstrap 4 beta 3. The selected navigation is the same as the rest of the navigation.
My Bad I had to overwrite active to see any difference. Below is what I added to my custum css to get the results I was looking for.
.navbar-nav > .active > a {
color: black;
font-weight: bold;
}
.nav-item > a:hover {
color: black;
font-weight: bold;
}
The nav-link Tag Helper does not work correctly with Bootstrap 4 beta 3. The selected navigation is the same as the rest of the navigation.
My Bad I had to overwrite active to see any difference. Below is what I added to my custum css to get the results I was looking for.
.navbar-nav > .active > a {
color: black;
font-weight: bold;
}
.nav-item > a:hover {
color: black;
font-weight: bold;
}