• Emphasis

    (@emphasis)


    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:
    https://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?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Alwyn Botha

    (@123milliseconds)

    You need a

    <div style=clear:both;></div>

    before the footer starts in footer.php

    Thread Starter Emphasis

    (@emphasis)

    added it

    still standing in top left on the about page ??

    <!-- footer -->
    
    <div style=clear:both;></div>
    	<div id="footer">
    
    		<p class="copyright"> &copy <?php
    $copyYear = 2011;
    $curYear = date('Y');
    echo $copyYear . (($copyYear != $curYear) ? '-' . $curYear : '');
    ?> <?php bloginfo('name'); ?>
    
    </p>
    	</div><!-- /footer -->

    Thread Starter Emphasis

    (@emphasis)

    Tried putting it on top of <!-- footer --> btw too. Same stuff.

    Thread Starter Emphasis

    (@emphasis)

    B-b-b-bump. Still got a crazy footer on the loose on https://niceflowertrading66.com/about ??

    Thread Starter Emphasis

    (@emphasis)

    New link for it: https://niceflowertrading66.com/cv

    Using positioning divs for the contact page too now, and same things happening to the footer: https://www.niceflowertrading66.com/contact

    Thread Starter Emphasis

    (@emphasis)

    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?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Footer changing position’ is closed to new replies.