Hi,
I’m using Weaver Xtreme without Plus (at the moment) and was trying to get the footer to stick to the bottom of the screen, this solution – adjusted according to the Weaver documentation – worked for me and I thought it might help others.
I installed Jetpack, activated “Edit CSS” and inserted the following css:
html, body { padding: 0; margin: 0; height: 100%;}
#wrapper { position: relative; min-height: 100%;}
#colophon { position: absolute; bottom: 0; left: 0; right: 0;}
* Not sure which section contentclass class refers to, I commented it out, can be it’s connected to the height of the footer.
.contentclass {
padding-bottom: 160px;
}
*/