skip to Main Content

Hide a div using css in wordpress

This is the html of what I want to hide <div class="count"> <div class="number">1</div> <div class="text">donation</div> </div> I've tried to use the CSS code: .count { display: none; } As well as: body.page-id-750 div.count { display: none; } For ref…

VIEW QUESTION
Back To Top
Search