I currently have a footer setup with 3 divs that are displayed horizontally at the bottom of the page.
<div class="footer-text footer_mainDIV">
<div class="footer_leftDIV">
All rights reserved
</div>
<div class="footer_middleDIV">
<a href="url">Help</a>
</div>
<div class="footer_rightDIV">
Version 6.0
</div>
</div>
To achieve this layout, I've used CSS styling:
.footer_mainDIV {
position: relative;
width: 100%;
border-top: 1px solid #eeeeee;
margin: auto;
}
.footer_leftDIV {
text-align: left;
position : absolute;
top: 0px;
left: 20px;
height: 50px;
width: 33%;
margin: auto;
}
.footer_middleDIV {
height: 50px;
width: 33%;
margin: auto;
}
.footer_rightDIV {
text-align: right;
position: absolute;
top: 0px;
right: 20px;
height: 50px;
width: 33%;
margin: auto;
}
If you're wondering how to make these divs stack vertically when the browser window is minimized due to lack of horizontal space, you can do so using CSS media queries.
Thank you,