I am trying to style active links. Well actually, I am trying to style active-exact links. However, I am not having any luck even after looking over the docs. I have some links in a bottom bar with this structure:
.custom-bottom-navbar nav a
Arghh, I just got it to work like this:
```
a.active--exact.active {
color: blue;
}
Most helpful comment
Arghh, I just got it to work like this:
```
a.active--exact.active {
color: blue;
}