How to hide a div class in Wordpress? CSS -
this div class, have included entire code below. need hide on wordpress on site. how go it?
i tried .
section_wrapper clearfix { display : none; }
in custom css not work. how hide this?
<div class="section_wrapper clearfix">
example code below:
<div class="section_wrapper clearfix"> <!-- additional html content --> </div>
since section_wrapper , clearfix classes give them styling have include .(dot) before them , have use 1 among 2 of them.
for example
.section_wrapper{ display:none; }
if write this
.section_wrapper .clearfix{ display:none; }
it means giving styling element having class clearfix under element having class section_wrapper
Comments
Post a Comment