футер прокрутке страниц всегда виден
Autore: Владимир М.
Visite 2006,
Followers 3,
Condiviso 0
Всем привет, подскажите пожалуйста, как сделать чтобы футер при прокрутке страниц всегда был виден?
Заранее спасибо !!!
Postato il
Autore
Hello Vladimir,
thank you for your message, I have moved it here so to provide you with better support, without risking any confusion.
Unfortunately, you cannot automatically make the footer and header always visible. I would like to suggest that you open an "Idea" Post where you describe to us the feature you would like to see implemented in the future releases of WebSite X5.
Thank you, I wish you a lovely day. Kind regards.
***** Google Translation:
Привет Владимир,
Благодарю вас за ваше сообщение, я переместил его сюда, чтобы предоставить вам лучшую поддержку, без риска путаницы.
К сожалению, вы не можете автоматически сделать нижний колонтитул и заголовок всегда видимыми. Я хотел бы предложить вам открыть сообщение «Идея», в котором вы описываете нам функцию, которую вы хотели бы видеть в будущих версиях WebSite X5.
Спасибо, желаю вам хорошего дня. С уважением.
Используйте код стилей:
<style>
#imFooterBg {
position: fixed !important;
}
#imFooter {
position: fixed !important;
bottom: 0px !important;
left: 0px !important;
right: 0px !important;
}
</style>
Для Вашего сайта life-decor.ru можно сделать такой вариант:
<style>
#imFooterBg {
position: fixed !important;
z-index: 10001;
}
#imFooter {
position: fixed !important;
bottom: 0px !important;
left: 0px !important;
right: 0px !important;
z-index: 10001;
}
</style>
<script>
$(function() {
if ($('div#imFooter').length > 0) {
var footer_space = 20;
var search_space = 20;
var footer_width = $('div#imFooter').width();
var search_left = $('div#imFooter div.search_form').offset().left;
$(window).resize(function() {
if (footer_width > $(window).width() - footer_space) {
$('div#imFooter').css('width', ($(window).width() - footer_space) + 'px');
}
else {
$('div#imFooter').css('width', footer_width + 'px');
}
$('div#imFooter div.search_form').css('left', ($('div#imFooter').width() - $('div#imFooter div.search_form').width() - search_space) + 'px');
});
$(window).resize();
$('div#imPage').css('padding-bottom', $('div#imFooter').height() + 'px');
}
});
</script>