Hey there, I've been experiencing some issues with my website's layout. I tried setting a min-height of 1000px on the mainbody to make all the pages the same size, but it's caused a problem with my footer. Now, the footer is positioned in the center of the page instead of extending across the full width like it should.
Here's my HTML:
<footer>
© Digital Canvas Web Designs est 2012
</footer>
</div> <!--wrapper-->
And here's the CSS snippet I'm using:
footer {
position:absolute;
width:auto;
bottom:0;
height:20px;
padding-bottom:20px;
border-top-color: #990012;
border-top-width:2px;
border-top-style:solid;
text-align:center;
font-family:georgia, serif;
font-style:italic;
font-size:0.75em;
}
I'm looking to have the footer border extend all the way across the bottom of the page. Any suggestions on how to achieve this? Thanks in advance!