How can I get the footer to stay at the bottom of each page? Right now it stops on half page on some pages.
How can I get the footer to stay at the bottom of each page? Right now it stops on half page on some pages. |
screen shot please My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
I get it to work on index but on some pages it won't stay at the bottom like this page. Im not sure what I'm doing wrong here. |
It is at the bottom of the page. https://www.deanbassett.com |
Here's what I did on my test site: http://houstonlively.com/about_us.php
div.sys_main_content {
background-color: transparent;
border: 0 none;
margin: 120px auto 0;
min-height: 300px;
padding: 0 5px 20px;
width: 1140px;
}
The CSS rule highlighted in red gives div.sys_main_content a minimum height and pushes the footer down the page. You should find that css selector in your templates general.css
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
Thank you, that did work fine. |