Skip to main content

Highlight the last nav item (internal and homepage)

El Paso-Teller County 911 Authority webpage with menu, mountain view, and emergency service information.
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;
}

See it in action here