Here is an example of my footer. Its a pretty simple bar of links at the bottom that is centered. The margins in the HTML spaces out the links a little so its not all bunched together.
HTML:
Code:
<div class="footerx">
<a href="/privacypolicy/">Privacy Policy</a>
<a style="margin-left:60px;margin-right:60px;" href="/termsofservice/">Terms of Service</a>
<a href="/contactus/">Contact Us</a>
<a style="margin-left:60px;margin-right:60px;" href="/ourphilosophy/">Our Philosophy</a>
</div>
CSS:
Code:
.footerx {
margin-top: 50px;
margin-bottom: 50px;
clear: both;
display: block;
text-align: center;
font-size: 12px;
}
/* you can style your links here. These styles will only affect the footer links, so they can look different than other links on your page */
.footerx a:link {
color: #505050;
}
.footerx a:visited {
color: #909090;
}
.footerx a:hover {
color: #000000;
}
.footerx a:active {
color: #909090;
}