Currently i have 3 divs
div 1 = left image (for a curve effect)
div 2 = right image (for curve effect)
div 3 = links to other pages
div 1 + 2 sit perfectly but the trouble im having is with centreing the links div in the remaining space..
i have done what i thort i would need to do, but in firefox the "margin-top" on div3 doesnt work so my text is right at the top.. i've tried to float the div left but then its vetically centred but not horizontally centred.
heres my html
<div id="footer"> <div id="footer_leftimage"></div> <div id="footer_rightimage"></div> <div id="footer_links" align="center"> <font class="size12white">Home | News | Spotlight | Latest Additions | User Feed | Contact | Forum |</font><font class="size12lightgrey"> © 2006 - 2008 Copyright Incoming Sound Inc.</font></p> </div> </div>
and my css
#footer_leftimage{
width:7px;
height:32px;
float:left;
background-image:url(images/footer_leftimage.png);
}
#footer_rightimage{
width:7px;
height:32px;
float:right;
background-image:url(images/footer_rightimage.png);
}
#footer_links{
width:680px;
height:16px;
margin-top:8px;
margin-left:auto;
margin-right:auto;
}
any ideas?
