css と html でラッパー div と重なっているフッター コンテンツがありますが、高さを auto に変更しても機能しませんでした。以下は、私が取り組んでいるページの例です。
ラッパー CSS
#wrapper {
width: 1030px;
height: 600px;
margin: 20px auto auto auto;
padding: 0;
background: url(wrapper.png);
}
フッター CSS
.footer{
width: 1000px;
padding: 60px 0 0 30px;
height: auto;
float: right;
clear: both;
background: url(footer_bg.gif) no-repeat top right;
text-align: center;
}