Footer changing position
-
Ok so my footer has been a good boy up till this moment.
For the “about” page I want to use this though DIV’s to position my text blocks:
http://niceflowertrading66.com/tryAs you can see, my footer is suddenly in my sidebar. I’ve extended the width on that page, but that doesn’t seem to be the problem.
Code for footer positioning is
#footer { margin-top: 90px; margin-bottom: 40px; width: 790px; }Any ideas?
-
You need a
<div style=clear:both;></div>before the footer starts in footer.php
added it
still standing in top left on the about page 🙁
<!-- footer --> <div style=clear:both;></div> <div id="footer"> <p class="copyright"> © <?php $copyYear = 2011; $curYear = date('Y'); echo $copyYear . (($copyYear != $curYear) ? '-' . $curYear : ''); ?> <?php bloginfo('name'); ?> </p> </div><!-- /footer -->Tried putting it on top of
<!-- footer -->btw too. Same stuff.B-b-b-bump. Still got a crazy footer on the loose on http://niceflowertrading66.com/about 🙁
New link for it: http://niceflowertrading66.com/cv
Using positioning divs for the contact page too now, and same things happening to the footer: http://www.niceflowertrading66.com/contact
I think the footer doesn’t recognise the positioned div-texts as content. I think it bases it position on the title, cause it thinks there’s no content. Is that possible? And how can I fix it?
The topic ‘Footer changing position’ is closed to new replies.