Normal Page full width

Hello dear Support iam using the blog on tyche also front page and shop webpage now my problem is if i start a normal page like Impressum i get all widgets from the blog and i cant use the full width content as normal clean page is there any solution to disable the widgets and the full width get activated?

greetz angelz

Hello there,

I hope you are doing well today.

If I understand correctly, you want to remove the sidebar from the pages and have them display in full width.

You can use the following CSS code to do this by going to Appearance > Customize > Additional CSS and pasting it there.

/*Remove side bar from pages*/
.page aside#secondary {
    display: none;
}

/*Increase content width for pages*/
@media (min-width: 992px)
.page .col-md-8 {
    width: 100%;
}

Best Regards,
Support

Hello there, I’m trying to aply these changes but when I paste this part:

/Increase content width for pages/
@media (min-width: 992px)
.page .col-md-8 {
width: 100%;
}

The theme says it will break my layout

Hello there,

This is strange, are you using a CSS plugin?

Please add a link to the page so that I have it as a reference.

Best Regards,
Support

No, I’m pasting directly to the costumizer panel.
My layout is not cool: https://www.filhoteeco.com.br/bolsinhas/bolsinhas-divertidas/

Hello there,

I have checked the code on your website and the code should work but please try using this CSS instead:


.page .col-md-8 {
width: 100%;
}

Best Regards,
Support