Salve,

sto facendo alcuni esempi di background image del footer. Pero' l'immagine nel footer non esce. Perche'. Grazie mille.

Link del sito:
http://www.kausha.org/Kausha_v3/index.php

URL dell immagine e':
http://www.kausha.org/Kausha_v3/img/...background.jpg

Questa e' la sezione specifica del CSS footer:
#footer{
clear: left;
width: 100%;
padding: 4px 0;
background-image:url('img/footer/footer_background.jpg);
font-family:sans-serif;
font-size:small;
color:withe;
}

Questo e' il CSS completo:
<style type="text/css">

body{
margin:0;
padding:0;
line-height: 1.5em;
}

#maincontainer{
width: 840px; /*Width of main container*/
margin: 0 auto; /*Center container on page*/
}

#contentwrapper{
float: left;
width: 100%;
}

#contentcolumn{
margin: 0 190px 0 180px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
}

#leftcolumn{
float: left;
width: 180px; /*Width of left column in pixel*/
margin-left: -840px; /*Set margin to that of -(MainContainerWidth)*/
background: #FFFFFF;
}

#rightcolumn{
float: left;
width: 190px; /*Width of right column*/
margin-left: -190px; /*Set left margin to -(RightColumnWidth)*/
background: #FFFFFF;
}

#footer{
clear: left;
width: 100%;
padding: 4px 0;
background-image:url('img/footer/footer_background.jpg);
font-family:sans-serif;
font-size:small;
color:withe;
}

.innertube{
margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
margin-top: 0;
}

</style>