This issue is due to the placement of the footer in your index.php file.
The footer is within the ID #container
At the bottom of the page, remove everything from line 144 to the end, which is from: ( <div id="footer">
) to ( </html>
) and paste the modified code which I'll refer to below.
Current Code:
<div id="footer">
<br>
<p> Suporte: <a href="mailto:[email protected]?subject=Suporte%20-%20SIG">Clique Aqui </a></p>
<p>© Peccin 2011 - 2014. Website Designed by <a href="mailto:[email protected]">TI - Peccin</a></p>
</div>
</div>
</body>
</html>
Modify to:
</div> <!-- isto fecha a div #container antes de começar o #footer -->
<div id="footer">
<br>
<p> Suporte: <a href="mailto:[email protected]?subject=Suporte%20-%20SIG">Clique Aqui </a></p>
<p>© Peccin 2011 - 2014. Website Designed by <a href="mailto:[email protected]">TI - Peccin</a></p>
</div>
</body>
</html>
After this, if you still want the footer to be centralized, just make changes to your file styles.css
by modifying it to:
#footer {
background-color: #010101;
height: 80px;
width: 1800px;
position: relative;
z-index: 999;
margin-left: auto; /* linha modificada */
margin-right: auto; /* linha adicionada */
}