I would like to remove ALL menus and content from the 404 pages. I just want a blank 404 page to show up if someone tries to get to a page that does not exist. How do I do this?
I was given CSS code below, but that only removed the top navigation menu. I’d like to remove the footer info as well so I have a blank page.
Thanks for your help!
Add this code in Theme Options > Theme Custom CSS:
.error404 header#header,
.error404 .page-heading {
display: none;
}