In my stylesheet.css file, I have the following code:
.vertical-navigation .navbar-default .navbar-nav > li > a:hover {
background-image: url(../images/sticcky_nav_hover.png)
}
.vertical-navigation .navbar-default .navbar-nav > li > a.navfirst:hover {
background-position: 28px -2px;
}
.vertical-navigation .navbar-default .navbar-nav > li > a.navsecond:hover {
background-position: 24px -82px;
}
Is there a way to apply this hover effect on the <a href...>
element when clicked, and have the hover effect remain even after the click event?