Viewing 5 replies - 1 through 5 (of 5 total)
  • There are a couple of ways to do this, just pick one. But the problem is that you have left and right floated content and the footer needs to clear those. You would add a clearing division or a clearing break to let the footer drop down below that content.

    OPTION 1:
    In your footer.php file, before the footer division, put this:
    <br clear="all" />

    OPTION 2:
    Or in your stylesheet, create a division like this:

    .clear {
       margin: 0;
       padding: 0;
       clear: both;
    }

    And in your footer.php file, above the footer division, put this:
    <div class="clear"></div>

    OPTION 3:
    Finally, you can just add this to your footer code in your stylesheet:

    #footer {
    [whatever else you have there]
       clear: both;
    }
    Thread Starter Fredrik Forsmo

    (@frozzare)

    I test all 3 option, but the footer just get down on the blue: http://beta.itscouten.se/wordpress/

    Thread Starter Fredrik Forsmo

    (@frozzare)

    Any one who can help?^^

    Thread Starter Fredrik Forsmo

    (@frozzare)

    How do i get the footer down at the page?

    Now is the footer on the blue bar.
    http://beta.itscouten.se/wordpress/

    margin:0 auto;
    padding: auto;
    width: 940px;
    clear:both;

    And to center the footer is not working :/

    Thread Starter Fredrik Forsmo

    (@frozzare)

    i fix it 🙂 it was a div before how was the problem

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