<div class="facetwp-selections">
<ul>
<li data-facet="countries">USA</li>
<li data-facet="countries">UK</li>
<li data-facet="countries">Germany</li>
</ul>
</div>
I am attempting to remove the indentation.
Ordinarily, this can be easily achieved with:
ul {
padding: 0;
}
However, there are other UL elements on the same page and I cannot assign a specific class to the UL I want to target.
I thought this selector would work, but it didn't:
ul.facetwp-selections {
padding: 0;
}
I also tried this alternative:
facetwp-selections.ul {
padding: 0;
}
Is there another way to target the UL within the parent DIV?
Thank you