Copyright label positioning

admin

Administrator
Staff member
I have a copyright library item. I want this copyright label to appear at the bottom of each page of my website. However due to different sized screens my label is not appearing at the bottom of the page on different screens i.e. it appears halfway up the page on larger screens How do I fix this???<!--content-->There are 2 possible ways..<br />
1. Use table,set the height to 100% and then put the label in the cell at the very bottom.<br />
<br />
2. Or you can create the same effect using pure CSS layout..using a mix of div+span elements.(again the key will be for the outer most div to be height:100%)<!--content-->You could create a classed division, for example: <br />
<br />
<style type="text/css"><br />
<!--<br />
.copyright { <br />
position: absolute; <br />
left: 50%; <br />
width: 200px; <br />
bottom: 0; <br />
margin-left: -100px; <br />
}<br />
--><br />
</style><!--content-->
 
Back
Top