<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 trying to make the indentation zero.
Usually, this is very simple like:
ul {
padding: 0;
}
However, there are other UL items on the same page and I do not have control in being able to add a class to the UL I am trying to target.
I thought that this would work but it didn't:
ul.facetwp-selections {
padding: 0;
}
And I tried this too:
facetwp-selections.ul {
padding: 0;
}
Any other way to target the UL in the parent DIV?
Thanks