Originariamente inviato da gra-fichetto
Scusa.
In fondo vuol dire, allineato sempre e comunque al margine inferiore dl tuo div contenitore?
In caso positivo, sposta fuori dal contenitore il tuo footer; cioè:
La tua pagina modificata:
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>:: POLYPIU'::</title>
<style type="text/css">
@import url("style.css");
</style>
</head>
<body>
<div id="container">
<div id="top"></div>
<div id="text">
aa
</div>
<div id="dx">
<div id="linkList">
<ul>
[*]AZIENDA
[*]DOVE SIAMO
[*]PRODOTTI
[*]DEVO REALIZZARE
[*]NEWS
[*]CONTATTACI
[*]CERTIFICAZIONI
[*]GARANZIE
[/list]
</div>
<div id="immagini">a</div>
</div>
</div>
<div id="footer">Privacy</div>
</body>
</html>
Il tuo CSS modificato:
codice:
html,body{
width: 100%;
margin: 0 auto;
padding: 0;
height: 100%;
min-height: 100%;
font-family: Arial, Helvetica, sans-serif;
font-size: 72%;
color: #CCCCCC;
background-color:#383838;
}
/*
html>body, html>body div#container {height:auto;min-height:100%;}*/
/*-----------------------------------------------------------box principali--------------------------------------------------------*/
div#container{
margin: 0 auto;
height: 100%;
width: 740px;
padding: 0 12px 0 12px;
color: #212121;
background-color: transparent;
background-image: url(../images/bg.jpg);
background-repeat: repeat-y;
background-position: center top
}
#top{
text-align: right;
width: 740px;
height: 160px;
background-image:url(../images/top.jpg);
background-repeat:no-repeat;
background-position:center top
}
#text{
text-align: left;
width: 537px;
float: left;
margin-left: 12px;
}
#dx{
width: 203px;
height: 250px;
float: right;
}
#footer{
clear:both;
margin: 0 auto;
width:740px;
height:124px;
background-image:url(../images/bottom.jpg);
background-repeat:no-repeat;
background-position:center top;
padding: 0 12px 0 12px
}
/*----------------------------------------------------MENU------------------------------------------*/
#immagini{width:203px;
text-align:center;
border-top:3px solid #FFFFFF;}
#linkList{width:203px;
border-bottom:6px solid #91C02D;
border-top:6px solid #91C02D;}
#linklist img{ border:0px; margin:0px; padding:0px;}