Parašė mNm.· 2011 Bal. 3 20:04:37
#9
Aš pasidariau, taip, kad per visą monitorių išilgai rodytų foną. Panaudojau nuotrauką kaip foną ir ją repeat-x. Nežinau, gal puse
CSS ir komandų nereikia. Bet veikia, tiek per FireFox, IE.
CSS:
#footerFonas {
background: url(images/footer-bg.png) repeat-x;
height: 49px;
position: absolute;
bottom: 0;
width: 100%;
}
#footer {
margin: 0 auto;
height: 45px;
color: #a2a2a2;}
#footerLeft {
float: left;
padding: 20px 10px 10px 10px;
}
#footerRight {
float: right;
padding: 20px 10px 10px 10px;
}
HTML:
<div id="footerFonas">
<div id="footer">
<div id="footerLeft">Copyright © kažkas.lt 2010. Visos teisės saugomos.</div>
<div id="footerRight">mNm solutions - <a href="http://validator.w3.org/check?uri=referer">xHTML</a> / <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></div>
</div>
</div>