Is there CSS Code that I can add to specific page to remove the header?

Posted in: Newspaper
Post count: 3

I am wanting to create a landing page for a video on my steveolson.co site and I can’t find the code to remove the header. Can this be done?

Post count: 22421

Hello,

You can use css to hide the header if you want. Every page has a specific ID that can be targeted with css: http://screencast.com/t/cXvGp4CdWSQ
For example on your homepage you would use this code:

.page-id-37 .td-header-style-10{
display:none!important;
}

For another page, simply change the id in the code to the id of your page.

Thank you!

Post count: 3

Perfect! Now second question –

How do I remove the top and bottom white bars?
http://steveolson.co/home-value

Post count: 23312

Hello steveolsonco,

If you want to remove the both white bars, please try the code below and add it in Theme panel->Custom CSS and fix the problem, like this ->
http://screencast.com/t/Erf8B5QRpO

.td-main-page-wrap {
padding-top: 0px;
}
.td-main-content-wrap {
padding-bottom: 0px;
}

Hope this helps and let us know how it goes!

Thank you for the message!

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