Deathshadow,
All of this is Paul O’s code from his Min-Max 3-column, fixed-width with full-height columns and sticky footer set up.
(My modest additions have /* NEW */ above them…)
I tried padding before with no luck.
Tried it now and wha-lah!
/* NEW */
#footer ul{
list-style: none;
padding: 20px 0 0 0;
}
As a rule of thumb, avoid declaring heights on things unless you have a image interaction, and even then… pad the line-height (which you aren’t setting) to make the total height instead of trying to say ‘height’.
Paul did that for a reason. Something with the sticky footer.
I also suggest NEVER trusting the default line-height. You change font-size, do yourself a HUGE favor and set the line-height explicitly.
I did above…
body{
background: #FFF;
font-family: Helvetica, Arial, Sans-Serif;
line-height: 1.4em;
font-size: 0.9em;
}
Also curious why you’re setting widths on it – wouldn’t it be easier to just move it inside the wrapper so it picks up width from that – or is the page in question a min-height layout?
Yes it is. That doesn’t work. Good idea though.
Not sure why you need position:relative or z-index on it either. Yeah, that looks like it should be min-height, so where’s the negative top index… or is it that broken “let’s position the wrapper above the top” thing that NEVER works right?
Paul used a negative top margin and like this…
#wrapper{
position: relative; /* Create Containing Block. */
z-index: 0; /* Place below other elements */
min-width: 760px;
max-width: 1200px;
min-height: 100%; /* For other browsers ??
Will expand beyond 100% ??? */
margin: 0px auto;
margin-top: -60px; /* Make space for Footer. */
background: #FFF; /* Fill color for short Middle Column. */
text-align: left;
}
Doesn’t help the illegibly small 11px either – again as a rule of thumb px is an accessibility /FAIL/, and as a large font/120 dpi user 11px is illegible nothingness for me – 12 is generally considered the smallest you should use, and I get squirrelly over anything smaller than 14px…
Paul again. 
(I switched it to 1em before you even said anything!!! Better??)
Sorry, guess I’m ending up with more questions than answers –
That’s okay.
I think your padding solved one issue. (I feel dumb I forgot about margin collapse.) 
though that’s typical when you just get a snippet instead of the full code.
Yeah, you got 1/2 page of 20 pages!!!
(If Paul ever dies, I’m screwed!!) 
Actually I get most of it, but my web layout is definitely Multi-Variable Calculus for my first-ever website!!! 
Should I just have a boring shaded footer with blue hyperlinks for disclaimer stuff, or would you style it more?
Having “pipes” in between might look nice. (You had some trick you gave me for my Log In | Help area above, although I took that out for now since you can’t log in!!)
Debbie