Emphasis
Member
Posted 1 year ago #
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/try
As 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
Emphasis
Member
Posted 1 year ago #
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 -->
Emphasis
Member
Posted 1 year ago #
Tried putting it on top of <!-- footer --> btw too. Same stuff.
Emphasis
Member
Posted 1 year ago #
B-b-b-bump. Still got a crazy footer on the loose on http://niceflowertrading66.com/about :(
Emphasis
Member
Posted 1 year ago #
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
Emphasis
Member
Posted 1 year ago #
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?