I have a list generated by Wordpress plugin. I want to simply remove the first row of the list, that is the elements and through CSS.
This is my html:
<dl>
<dt class="coffee">Coffee</dt>
<dd>Black hot drink</dd>
<dt class="milk">Milk</dt>
<dd>White cold drink</dd>
</dl>
I tried display:none
but it works only for the <dd>
.