Highlight the last nav item (internal and homepage)

Add to advanced CSS for internal
.navbar-nav > li:last-child > a {
background: #c13d27 !important; /* Example: Change text color */
//border-radius: 9px;
color: #fff !important;
//font-weight: 500;
//font-weight: bold; /* Example: Make the font bold */
}
.navbar-nav > li:last-child > a:hover, .navbar-nav > li:last-child > a:focus {
background: !important; /* Example: Change text color */
//border-radius: 9px;
color: #fff !important;
//font-weight: 500;
//font-weight: bold; /* Example: Make the font bold */
}
Add to advanced preferences before </head> between your styles tags
a[href="/peak-alerts"] {
background: #c13d27 !important;
color: #fff !important;
}
a[href="/peak-alerts"]:hover,
a[href="/peak-alerts"]:focus {
background: #8F2E1D !important;
color: #fff !important;
}