I have this css styling in my Superfly menu element How to add CSS class to a specific Superfly menu item?
#sfm-sidebar.sfm-sidebar-exposed .sfm-menu-level-0>li:nth-child(6) a:link {
font-size: 15px !important;
}
However, when the link is clicked, the link size gets bigger and I have tried this code to solve it, but it doesn’t work.
#sfm-sidebar.sfm-sidebar-exposed .sfm-menu-level-0>li:nth-child(6) a:active {
font-size: 15px !important;
}
Could you help with this?