Make widgets disappear when post is opened

Hello,

Is it possible to make widgets disappear when a post in opened on my page making it bigger?

Thanks.

Regards,

Lydia Malagón

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS


/*single post full width*/
.single-post div#secondary {
    display: none !important;
}
.single-post .main-content-inner.col-sm-12.col-md-8.side-right {
    width: 100%;
}

Best regards,
Support.

Perfect, thanks so much!

You are always welcome here :slight_smile: