Hey tuanphan,
I have similar issue like the post above.
I have pages in Navigation Folder that change color correctly when the page is active. I also have a shortcut link of the same page in the navigation. I cannot get that link to look active in both the Navigation Folder and on the navigation main line.
Please see attached screenshot.
Here is the CSS code I used:
/* NAV LIST BACKGROUND */
.header-nav-folder-content {
background: #EEEEEE !important;
}
/* NAV REMOVE UNDERLINE */
.header-nav-item--active a{
background: unset !important;
}
header a {
background-image: none !important;
}
/* NAV HOVER COLOR */
.header-nav-item a:hover {
color: #C4262E !important;
transition-duration: 0.3s;
}
/* NAV ACTIVE COLOR */
.header-nav-item--active>a, .header-nav-folder-item--active>a, .header-menu-nav-item--active>a .header-menu-nav-item--active {
background-image: none !important;
color: #C4262E !important;
}