I have this html:
<div class="leading-4">
<h2>title</h2>
<p>one para</p>
<p>Maybe another para</p>
<p><ul><li>.....</li></ul></p>
<h4>text</h4>
</div>
I want to edit the p that has the ul in it -
I thought about
.leading-4 p:nth-last-child(1){
}
and
.leading-4:nth-last-child(1){
}
but it doesn't' work either (though I didn't think it would)
What am i doing wrong please