Removing/hiding menu

Posted in: Newspaper
Post count: 2

Hi,

I’m creating a landing page for an event and I need to remove the main menu from the newspaper theme. Is there a way to hide the menu on all pages?

Thanks!

Post count: 23312

Hello alittl19,

If you want to hide the main menu for all your pages, please try the code below and place it in Theme panel -> Custom CSS area.

The code is ->

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

Thanks.

Post count: 2

Thank you, that worked like a charm!

Post count: 13

Hi, so it would apply for post like this?

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

Post count: 22421

Hi,
Yes it will. Try it out! It will hide the menu for all posts. If you want to target individual posts though you can use the post id:

.postid-8253 .td-header-menu-wrap{
display:none;
}
or for multiple id’s
.postid-8253 .td-header-menu-wrap, .postid-8254 .td-header-menu-wrap , .postid-8255 .td-header-menu-wrap{
display:none
}

I hope this helps.
Thanks.

Post count: 3

Hello, I have a quite similar question but for just one page. Is it possible to remove menu on the landing page I want to create.

Thanks for all your fantastic work !

Post count: 22421

Hi,

If you want to hide the menu only for one page in particular you will need the page id. you can get the page id like so: http://screencast.com/t/xFCgxR1eNDr
then you can use this code and simply change the id number for it:
.page-id-605 .td-header-menu-wrap-full{
display:none!important;
}

Thank you!

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