WordPress Unite Theme: Footer isn’t sticking [closed]

I’m assuming that #colophon is the element id of your footer wrapper? It’s kind of an odd name for a footer wrapper, but if that is what it is then ok.

position: absolute; is with respect to the containing element, not the viewport.

As a quick fix try adding this to your css:

html, body {
    height: 100%;
}

If that doesn’t work then there are ancestral elements in the footer’s chain that are not at height 100%. Would need to have the page in a DOM inspector (e.g. FireBug) to really see what’s going on…