Click to See Complete Forum and Search --> : Copyright label positioning


vik_pa
06-12-2003, 05:24 AM
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???

Khalid Ali
06-12-2003, 06:19 AM
There are 2 possible ways..
1. Use table,set the height to 100% and then put the label in the cell at the very bottom.

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%)

Robert Wellock
06-12-2003, 08:17 AM
You could create a classed division, for example:

<style type="text/css">
<!--
.copyright {
position: absolute;
left: 50%;
width: 200px;
bottom: 0;
margin-left: -100px;
}
-->
</style>