Forums

Footer help (6 posts)

  1. Frozzare
    Member
    Posted 1 year ago #

    Hi.

    How do i place the footer so it will come all the way done, after all?

    Look here on my beta theme:
    http://beta.itscouten.se/wordpress/

    the footer is there up :&

    Please help (:

  2. jonimueller
    Member
    Posted 1 year ago #

    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;
    }
  3. Frozzare
    Member
    Posted 1 year ago #

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

  4. Frozzare
    Member
    Posted 1 year ago #

    Any one who can help?^^

  5. Frozzare
    Member
    Posted 1 year ago #

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

  6. Frozzare
    Member
    Posted 1 year ago #

    i fix it :) it was a div before how was the problem

Topic Closed

This topic has been closed to new replies.

About this Topic