Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Push the footer to the bottom of the browser.
Is there a way to push the footer to the bottom of the browser page, as if you have few discussions it gets all bunched up near the top.
Thanks in advance.
0
This discussion has been closed.
Comments
First I added a div in head.php, at the end right before the "SiteContainer" div:
<body'.$BodyId.' '.$this->Context->BodyAttributes.'> <div id="ContainerBoxWhateverYouWantToCallIt"> <div id="SiteContainer">'; ?>
Then, in page_end.php, I added a div for the footer and closed the one I opened earlier:
<?php // Note: This file is included from the library/Framework/Framework.Control.PageEnd.php class. echo '<div id="NewFooterWhateverYouWantToCallIt"> <stuff>Enter some code</stuff> </div> </div> </body> </html>'; ?>
That would display the footer on all pages, so depending on what one wants, you could add some conditions to make the footer show up on some pages and not on others. Even if it's not what you want, maybe it will give you something to play around with.