WebSite X5Help Center

 
Владимир М.
Владимир М.
User

футер прокрутке страниц всегда виден  ru

Autor: Владимир М.
Besucht 1723, Followers 3, Geteilt 0  

Всем привет, подскажите пожалуйста, как сделать чтобы футер при прокрутке страниц всегда был виден?

Заранее спасибо !!!

Gepostet am
4 ANTWORTEN - 1 NüTZLICH
Владимир М.
Владимир М.
User
Autor
Владимир М.
Всем привет, подскажите пожалуйста, как сделать чтобы футер при прокрутке страниц всегда был виден на всех страницах? Заранее спасибо !!!
Mehr lesen
Gepostet am von Владимир М.
Incomedia
Elisa B.
Incomedia

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.

Спасибо, желаю вам хорошего дня. С уважением.

 

Mehr lesen
Gepostet am von Elisa B.
Vitaliy M.
Vitaliy M.
User

Используйте код стилей:

<style>
#imFooterBg {
position: fixed !important;
}
#imFooter {
position: fixed !important;
bottom: 0px !important;
left: 0px !important;
right: 0px !important;
}
</style>

Mehr lesen
Gepostet am von Vitaliy M.
Vitaliy M.
Vitaliy M.
User

Для Вашего сайта 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>

Mehr lesen
Gepostet am von Vitaliy M.