Here is what I currently have:
<label class="filter-label" for="pv[]181">
::before
white
<span class="count">5</span>
::after
</label>
My goal is to modify the ::after element within that label, but so far my attempts have not been successful. I have tried the following:
.filter-label label[for="pv[]181"]::after
.filter-label label[for=pv[]181]::after
.filter-label[for=pv[]181]::after
Could someone please provide guidance on how to successfully edit this ::after
element?
Thank you.