Bades
1
I recently applied this sticky footer technique: http://ryanfait.com/sticky-footer/
and now my website has a scroll bar even though i have no content, you can scroll like a millimeter, it’s weird.
here’s the test site http://designingyours.com/cater/
ralphm
2
Change this
#wrapper {
min-height: 100%;
height: auto;
height: 100%;
margin: 0 auto -58px;
}
to this
#wrapper {
min-height: 100%;
height: auto;
height: 100%;
margin: 0 auto [COLOR="Red"]-60[/COLOR]px;
}
You need to account for the 2px top border on the footer, as that adds to the height. 
Bades
3
ahhh, good looking! One day Ill get the eyes to catch this kind of stuff 