MyBB Community Forums

Full Version: style help (not mybb related)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to build a website, and I am currently working on a global template which I want to include a header and a footer. So once I built that, the header works fine (no duh) but the footer, which is part of global since I want it to be on every site, doesn't want to appear under the rest of the data on the page. I have played with position in css, but it seems I just really can't figure it out. I also searched online and didn't get it fixed. Thanks for any help you guys can offer.

In easy terms I want my global template to contain a header and footer. The header should appear above my data which is currently only echoing "test" in php. And my footer to appear under it on the bottom of the page under the "test."

<?php
include ('global.php');
echo "test";
?>