Requesting custom CSS to change the actual selected category link in the AV Masonry.
Below is coding I have found which changes the hover link for the specific module I’m referring to…. I’m requesting code for color once the link has been clicked, and becomes the category being filtered.
/*sample code*/
.av-sort-by-term a:hover {
color: red!important;
}
This changed the background:
.main_color .av-masonry {
background-color: #19232f;
}
Much thanks.
Hi thethrowdown!
Please add following code to Quick CSS as well
a.all_sort_button.active_sort {
color: blue!important;
}
Best regards,
Yigit
Thanks, this work perfectly for the default option (ALL), but any of the subcategories you select, go back to being the other link color.
What CSS is needed to change any of the other categories, once you select them?
FYI – figured it out.
a.CATEGORYNAME_sort_button.active_sort {
color: blue!important;
}
Just make one entry for every category. Thanks!