In keeping with the duct tape approach, you could use CSS to move the Pager below your content.
#div-that-holds-pager-and-content {
position: relative;
padding-bottom: 50px;
}
#div-that-holds-pager {
position: absolute;
bottom: 10px;
}
Finbarr
2010-04-09 09:39:40