Remove entire header from front / splash page only?

Permalink
Hi all,

Newbie in over his head here... Want to remove the entire header from the sites front page, in order to have a clickable image as the first impression for site users. Have tried following the instructions from MrGrowBizz here:http://www.concrete5.org/community/forums/usage/hide-andquotsite-na... - but to no avail?

I'm attaching my home.css file, as it appears on my site - I'm not allowed to attach the home.php and header2.php files? I still haven't managed to "disappear" the header bar, and somehow my front-page uses the right sidebar layout?

Any help enormously appreciated - dying to take the site live, need this last bit to perfect it! :-)

Look forward to shoveling some karma at anyone who can shed some light on this issue! :-)

/Johan

1 Attachment

jlehmann
 
VPenkov replied on at Permalink Reply
VPenkov
Your CSS file doesn't help a lot.
You should follow jordanlev's instructions from the thread you linked to.

<?php if ($c->getCollectionID() != HOME_CID): ?>
<!-- Header goes here, you can put any HTML here. -->
<?php endif; ?>

Just wrap the code which displays your header with lines 1 and 3.

Explanation:
If the page you're currently on is NOT the homepage, then the header will be displayed.