Hello,
I need to add an underline as hover on the menu items on navigation bar. I want to make each different per section and to remain when it's active.
I'm using something this code but it's not working correctly
.header-nav-item a:hover {
text-decoration: underline;
text-decoration-color: #2C6BDB;
text-underline-offset: 8px;
text-decoration-thickness: 8px;
}
.header-nav-item a:active {
text-decoration: underline;
text-decoration-color: #2C6BDB;
text-underline-offset: 8px;
text-decoration-thickness: 8px;
}