@tuanphan @bangank36 Is there a solution that would work under Design > Custom CSS? I am trying to do the same thing - when someone clicks a category at the top (all, motion graphics, or editing), the selected/currently viewing category should stay the hover color. Here is the custom CSS I already applied to the categories, if it makes a difference. Here is my website, pass: pqrs. Thank you!
//tag cloud
.sqs-tagcloud li a {
color: rgb(67, 45, 199);
background-color: #00000;
font-style: regular;
padding: 5px 10px;
border-radius: 4px;
font-size: 18px;
-webkit-transition: .15s ease-out;
-moz-transition: .15s ease-out;
transition: .15s ease-out;
}
//tag cloud:hover
.sqs-tagcloud li a:hover {
background-color: rgba(173, 161, 242, .2);
}