Подскажите, как грамотно прижать футер к низу страницы
Решение:
/catalog/view/theme/default/template/common/footer.tpl
в начале файла вставляем все что жирным
<div class="empty"> </div><!--empty-->
</div>
<div id="footer">
далее правим:
/catalog/view/theme/default/stylesheet/stylesheet.css
добавляем и меняем все что жирным
html {
height:100%;
}
body {
height:100%;
}
#container {
min-height:100%;
height:100%;
height:auto !important;
position:relative;
}
#container .empty {
height:100px;
}
#footer {
position: relative;
margin-top: -100px;
height: 30px;
margin-left: auto;
margin-right: auto;
clear:both;
}