you could try this:
.tag-groups-tag + span {
color: red;
}
Thread Starter
satsky
(@satsky)
thanks,
where does it have to be inserted?
Thread Starter
satsky
(@satsky)
Done!! And looks fine
Thanks
Thread Starter
satsky
(@satsky)
Is it possible change font color of some featured tags?
f.e. new ones inserted
page is
https://www.paratucelu.com.ar/tienda/protectores-por-modelos/
Thanks and regards
Gustavo
I don’t know a way with CSS, but you could use jQuery to change the color of a tag with a particular string in the name:
<script>
jQuery(".tag-groups-label:contains('CAT S30')").css('color','red');
</script>
But the script doesn’t know which tags are considered new, it just looks at the name.
Thread Starter
satsky
(@satsky)
thanks,
where does it have to be inserted?