UPDATE – I figured out how to get rid of the entry header thing. Still wondering about removing the sticky banner from my splash page. Thanks
Okay, another update… I got rid of the tc-header sticky banner on the splash page, but it has left a big gap at the top, and my body div is too low… I don’t think I’ll figure this part out on my own.
Here is the code I used in my custom css to deal with the sticky banner and the page title headers –
.page .entry-header { display: none; }
.page-id-2 .tc-header { display: none; }
I suggest that you remove those css entries and use the basic features in Czr
Sticky Menu: Settings found in Customize>Header>Design & Layout
Page Title Headers: Settings found in Customize>Global Settings>Titles icons settings
Thanks, and sorry for idiocy. That helped me a lot. Now, I have one other little problem I’d like to ask you about. I have installed wp supersized to have a full screen image on the splash page, but now the footer is floating around in the middle of the page. How can I remove the footer from my home page only?
Using this code has removed the footer from the work and contact pages, but not the home page somehow…
#footer { display: none; }
.home #footer { display: block; }
Try replacing #footer with footer#footer .colophon
That works! Except now I have this sneaky little line still hanging around. Any ideas?
Add
footer#footer .colophon {border-top: none;}
No luck I’m afraid. The line remains!
Sorry, try
footer#footer {border-top: none;}
Thanks! Worked. You’re great.
Hi. Sorry to do this, but I noticed that the footer is gone from all pages now… Is there something I can add at the beginning of those 2 code lines to make it only apply to the home page (page id 2) ?
Of course:
.home footer#footer {border-top: none;}