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

Popular posts from this blog

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -