Hi,
I would like to style the terms link on Cards individually.
But I can’t grab the needed selector!
The generic selector used is #wpsp-4447 .wp-show-posts-meta a
. Where 4447
should be replaced with your WPSP list id.
But if you want to style the terms uniquely, you’ll have to style them using their unique href attribute.
Say for example, you have a WPSP list with a list id of 169
and you have a category named “Food” with an href link of https://yoursite.com/categories/food
and you want it to have a background-color of red.
You can style this particular “Food” category link using this CSS:
#wpsp-169 .wp-show-posts-meta a[href~=food]{
background-color: red;
}