Not signed in (Sign In)

SkillShare - A place to discuss Web Standards and Web Design topics

Categories

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorGustavs
    • CommentTimeDec 25th 2005 edited
     permalink
    Hey, I'm working on a web page that needs the footer to be locked to the bottom of the browser no matter in what resolution you are viewing it. How can I do that in CSS?
    • CommentAuthoradmin
    • CommentTimeDec 25th 2005
     permalink
    yep...

    I'm using a similar method for CSS Beauty.

    http://www.themaninblue.com/experiment/footerStickAlt/
    • CommentAuthorWevah
    • CommentTimeDec 25th 2005
     permalink
    That's a nice technique.
    • CommentAuthorSam K
    • CommentTimeDec 25th 2005
     permalink
    • CommentAuthorastatic
    • CommentTimeDec 30th 2005
     permalink
    I still can't get my footer to stick in firefox, can someone please help.
    http://astatichosting.5gigs.com/test/footer.php
    • CommentAuthoradmin
    • CommentTimeDec 30th 2005
     permalink
    I believe you need to give your "container" div a min-height: 100%;

    #container {
    margin: 0 15%;
    background: #FFF url(img/container_bg.jpg);
    border-left: solid 8px #000;
    border-right: solid 8px #000;
    border-bottom: solid 8px #000;
    min-height: 100%;
    }
    • CommentAuthorastatic
    • CommentTimeDec 30th 2005
     permalink
    thank you, but do you know how I could align the image to go to the right in firefox? I can't get the bottom nor the top to align right. Also is there a way to make the extra space be in the container instead of the footer like in explorer for firefox?
    • CommentAuthoreisabai
    • CommentTimeDec 30th 2005 edited
     permalink
    This is what I would do to align the navigation images to the right. Just add the first 3 lines of code into your exisiting #navigation ul.

    #navigation ul {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 304px;
    height: 20px;
    background-image: url(img/nav_bg.gif);
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: right;
    }
Add your comments
    Username Password
  • Format comments as (Help)