Full Width Pages without Title on Beaver Build

Hello!

I am trying to design full length/width pages but I am limited to a small section of the page. I would like to be able to add my own content after the grey “Contact Us” section on the top. I tried to explain in the visual below! Thank you SO much!

Hi @applegeek01,

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 -> Shapely Options -> Other


body.page div#primary {
    width: 100%;
}
body.page aside#secondary,
body.page header.entry-header {
    display: none;
}

Best Regards,
Movin