Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Having the footer at the bottom of the page.

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #37849
    djrolstad
    Participant

    My website is http://www.meadowbrookglitter.com/meadow
    I want the footer at the bottom of the page at all times, how do I do this?

    #102004
    resweb
    Member

    try this code,
    Html code


    Your website content here.


    CSS code
    * {
    margin: 0;
    }
    html, body {
    height: 100%;
    }
    .wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -4em;
    }
    .footer, .push {
    height: 4em;
    }

    #102007
    Senff
    Participant
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.