hair salon . barbershop
SELF CONFIDENCE . GROOMING . LIFE STYLE
WELCOME TO BARBER HAIR SALON AND BARBERSHOP GROOMING LIFE STYLE AND SELF CONFIDNCE

We create new business approach
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book galley of type and scrambled .
Visit Our Online Shop
WELCOME TO BARBER HAIR SALON AND BARBERSHOP GROOMING LIFE STYLE AND SELF CONFIDNCE

We create new business approach
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book galley of type and scrambled .

Как создать фиксированную кнопку из ZeroBlock в Tilda

Создаём кнопку в ZeroBlock и при помощи скрипта делаем её фиксированной
Заменить #rec47821265' - ID ZeroBlock
Скрипт вставляем в блок ДРУГОЕ►T123

<style>
/*Задаём ширину для Zero*/
.floating {
 width: 350px;
}
/*Выставляем фиксированную позицию на экране и номер слоя выше остальных*/
.fixed {
 position: fixed;
/*Задаём отступ снизу*/ 
 bottom: 50px;
 z-index: 9999;
}
</style>

<script>
$(document).ready(function(){
    /* нужно заменить на код блока  Zero выполняющего роль меню */
    var blockMenuID = '#rec47821265';
    //Добавляем класс с шириной и фиксацией
    $(blockMenuID).addClass('floating fixed');
   
});
</script>
Made on
Tilda