Site URL: https://brecha.online/new-page
I want to remove the header and footer from one specific page.
I was able to remove the header with:
.header-announcement-bar-wrapper {
display: none;
}
The footer, however, isn't working. When I try this, it just deletes the rest of the content on the entire page:
.content-wrapper {
display: none;
}
"content-wrapper" is the element I found for the footer while inspecting the page.
Any ideias? Thanks!