Is it possible to remove the logo and menu just in the index page?

Posted in: Newspaper
Post count: 3

Hi, I am creating a new design for my index.html and I would need to remove completely the logo and menu section. Is this possible? and if it , how can I do it?
Thank you

Post count: 22421

Hello,

You can use css to simply hide them if this is what you want. You will need the page id to affect only that page. The page id can be seen in the pages section of wp: http://screencast.com/t/Xr7yLEQAdbkm

The you will have to use the page id in this css code:
.page-id-12392, .td-header-wrap{
display:none;
}

Add the code in the theme panel->custom css box.

Thank you!

Post count: 3

Thanks for your answer.
I tried it, but doing it the heather disappeared in all the pages and post.
I used the right page id, but still, it doesn’t work, disappeared in all post/pages.

Any suggestion?

Post count: 22421

Hi,
Please use the code lie so:
.page-id-12392 .td-header-wrap{
display:none;
}

There was a comma there that was not supposed to…sorry…my bad
Thanks.

Post count: 3

It works !!
Thanks a lot!

it is possible to remove comments in a specific page using css?

Post count: 22421

Hi,

You can do it using the page id as above. Here is a sample code :

.page-id-12392 .td-module-comments{
display:none!important;
}

Thank you!

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