Disable Menu on 404 Error Page

Posted in: Newspaper
Post count: 135

How to disable menu on 404 page not found page.

Post count: 23312

Hello George,

If you do not have the menu for your 404 page, you have 2 possibilities to hide it. You can use a bit of CSS code to hide it. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.error404 .td-header-menu-wrap-full {
display:none;
}

The result -> http://screencast.com/t/rGPZLBuD

or you can add the condition in core file where the menu is created, like this -> http://screencast.com/t/osvjgxqz6EB

Thank you for the message!

Post count: 135

Thanks Catalin! It worked.

But I still see the logo and a line beneath it.

url: http://www.appztesting.com/djhkjkdjafld

how do we remove that from code completely.

Post count: 23312

Hello George,

You can use the code below and place it in Theme panel->Custom CSS area if you want to hide your Logo and gradient for the 404 page.

The code is ->

.error404 .td-header-main-menu {
display:none;
}

The result you should see here -> http://screencast.com/t/kAXaFQ1Xs

Thank you for the message!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.