MyBB Community Forums

Full Version: How to fix footer?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I can't move the footer down about 10px and I tried using margin-top: 10px; and it won't work. Can anyone help me?

Footer:
<br />
<div id="footer">
        <div id="footer_contents">
                <span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
        </div>
</div>

CSS:
#footer {
        background:url(images/backgrounds/top_header.png);
        border-bottom: 1px solid #003994;
        height: 30px;
        clear: both;
}

#footer_contents {
        
}

Website: http://ComingSoon.VisualizeEdits.com/
Add another <br /> at the very beginning of footer template.
(2013-07-30, 06:49 AM)effone Wrote: [ -> ]Add another <br /> at the very beginning of footer template.

Doesn't work. Only for the other pages but not the index. On the index, it has containers in it that float so I had to put clear: both; in it. Any other suggestions?
It would look like your footer is assigned the #copyright_container id. try putting the margin-top there and see if it works.

EDIT: or #forum_footer_container if that's the area you were talking about.
Forgot to end this topic, I fixed it to where that code I created was my own footer for the index page. I delete the footer from index but leaving the footer for all the others.