サイトのホームページを完成させるのに少し苦労しています。
ホームページにアクセスすると、本来あるべき姿に見えますが、フッターまでスクロールすると、メインの背景とビール瓶が続きます。それらをそのままにして、ビール瓶がフッターの切り落とされた真上にくるようにしたいだけです。
CSS:
body{
height: 100%;
width: 100%;
background-color: #b2b2b2;
background: url(../images/trial3.gif) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/*HERE iS BOTTLE IMAGE */
.smoke {
position: fixed;
bottom: 0;
right: 0;
}
#footer{
height: 125px;
background: #333333;
width: 100%;
overflow:auto;
}