Forums

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

Home Forums CSS 2 100% columms + sticky footer Re: 2 100% columms + sticky footer

#131099
CrocoDillon
Participant

You can do it with absolute positioning easily, I hope some one comes up with a better way:

#main {
width: 900px;
}
#site_content {
position: absolute;
top: 150px;
bottom: 30px;
height: auto; /* just remove the 100% height */
}

Then you just need to make the main column scrollable.