Hi, so it would apply for post like this?
.post .td-header-menu-wrap {
display:none;
}
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.
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 !
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!