I have a wrapper div and 2 divs that I wont to appear top and bottom of the page.
The top one is fine, and the bottom one works fine, appart from the fact that it stops the other effect working which is that the 4 divs placed in each of the divs spread appart equally across the page.
http://www.lorhnm.co.uk/liverpoolst/main.php#
Can someone help me so that I can keep the divs effect so they space equally, and also allow the div to fix itself to the bottom of the page.
<div id="button_Container_1">
<div class="box1"><a href="#" title="Moorgate Ticket Hall"><div class="circle">Moorgate Ticket Hall</div></a></div>
<div class="box2"><a href="#" title="Tunnels"><div class="circle">Tunnels</div></a></div>
<div class="box3"><a href="#" title="Welfare"><div class="circle">Welfare</div></a></div>
<div class="box4"><a href="#" title="Broadgate Ticket Hall"><div class="circle">Broadgate Ticket Hall</div></a></div>
<span class="stretch"></span>
</div>
<div id="button_Container_2">
<div class="box1"><a href="#" title="Moorhouse Shaft"><div class="circle">Moorhouse Shaft</div></a></div>
<div class="box2"><a href="#" title="Moorgate Shaft"><div class="circle">Moorgate Shaft</div></a></div>
<div class="box3"><a href="#" title="Finsbury Shaft"><div class="circle">Finsbury Shaft</div></a></div>
<div class="box4"><a href="#" title="Blomfield Box"><div class="circle">Blomfield Box</div></a></div>
<span class="stretch"></span>
</div>
.circle
{
height: 115px;
width: 115px;
display: table-cell;
text-align: center;
vertical-align: middle;
border-radius: 140px;
background: yellow;
padding:5px;
}
#button_Container_1{
margin-top:20px;
border: 0px dashed #444;
height: 140px;
text-align: justify;
-ms-text-justify: distribute-all-lines;
text-justify: distribute-all-lines;
}
#button_Container_1 a:link{
color:#000000;
text-decoration:none;
}
#button_Container_1 a:visited{
color:#000000;
text-decoration:none;
}
#button_Container_1 a:hover{
color:#06C;
text-decoration:none;
}
#button_Container_2{
position: fixed;
bottom: 0;
border: 0px dashed #444;
height: 140px;
text-align: justify;
-ms-text-justify: distribute-all-lines;
text-justify: distribute-all-lines;
}
.box1, .box2, .box3, .box4 {
width: 140px;
height: 140px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1
}
.stretch {
width: 100%;
display: inline-block;
font-size: 0;
line-height: 0;
}