page with full widh without title

Hi,
in some cases i want to get some pages without page title and “box” around that.
I want to put only a full-width slider under the menu.
How i can do that ?
This is an example:

And this is the website where it is located:
www.fratsrl.ideamedia.agency

Please let me know, thanks !

Hi @cranky69,

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 the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

body.page-id-18 header.entry-header.page-header {
    display: none;
}

body.page-id-18 .entry-content {
    margin-top: 0;
}

body.page-id-18 .post-inner-content {
    padding-top: 0;
}

body.page-id-18 .container.main-content-area {
    margin-top: 0;
}

Best Regards,
Movin