Dear Drupalers,
I just had a look at the Theme-Garden theme. I really like the fact that the footer sticks to the bottom of the page.
As the Theme-Garden theme is not downloadable as a reference does anybody know the code to make a footer stick to
the absolute bottom? I seem to fail in my novice attempts.

thanks for your help
yara

Comments

yara’s picture

you know when it looks like its stuck to the browser window. I could do a frameset and load the drupal index.php in but I seem to do something wrong as it just prints out the code from index.php. how do I call the index.php into the mainFrame? Or is there are better way to get the footer arranged?

sepeck’s picture

Install the WebDeveloper toolbar for firfox and look at the css.

#navfloat    (line 166)
{
    background-image: url(bottomshade.png);
    background-repeat: repeat-x;
    -x-background-x-position: 0%;
    -x-background-y-position: 100%;
    position: fixed;
    left: 0px;
    width: 100%;
    bottom: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
    z-index: 3;
}

-Steven Peck
---------
Test site, always start with a test site.
Drupal Best Practices Guide -|- Black Mountain

-Steven Peck
---------
Test site, always start with a test site.
Drupal Best Practices Guide

yara’s picture

hey steven,

just installed the webdeveloper toolbar for firefox, wow - thank you so much for that. I was not aware that it was possible to look at the css of all the sites, that's soso brilliant.

thanxs
yara