Ольга 94 (21 Июнь 2016 - 16:52) писал:
помогите пожалуйста с вопросом!
Отправлено 23 Июнь 2016 - 03:19
Ольга 94 (20 Июнь 2016 - 21:35) писал:
.slide_but { font-size: 30px; display: inline-block; height: 65px; top: 378px; left: 320px; background: #fff; outline: 0; position: absolute; z-index: 99; text-align: center; width: 700px; font-family: arial; border-color: transparent; transform: none; line-height: 65px; }
.slide_but { font-size: 30px; display: block; height: 65px; top: 50%; left: 50%; background: #fff; outline: 0; position: absolute; z-index: 99; text-align: center; width: 700px; font-family: arial; border-color: transparent; transform: none; line-height: 65px; margin-left: -350px; margin-top: -30px; }
#slider > div { transform: none !important; }
Ольга 94 (20 Июнь 2016 - 21:35) писал:
$(document).ready(function() { $('.filter > .contentTbodySearchFilterBlock').hide(); $('.filter > .str').click(function() { $(this).closest('.filter').find('.contentTbodySearchFilterBlock').toggle(); }); });
Отправлено 23 Июнь 2016 - 12:32
Vaccina (23 Июнь 2016 - 03:19) писал:
.slide_but { font-size: 30px; display: inline-block; height: 65px; top: 378px; left: 320px; background: #fff; outline: 0; position: absolute; z-index: 99; text-align: center; width: 700px; font-family: arial; border-color: transparent; transform: none; line-height: 65px; }
.slide_but { font-size: 30px; display: block; height: 65px; top: 50%; left: 50%; background: #fff; outline: 0; position: absolute; z-index: 99; text-align: center; width: 700px; font-family: arial; border-color: transparent; transform: none; line-height: 65px; margin-left: -350px; margin-top: -30px; }
#slider > div { transform: none !important; }
$(document).ready(function() { $('.filter > .contentTbodySearchFilterBlock').hide(); $('.filter > .str').click(function() { $(this).closest('.filter').find('.contentTbodySearchFilterBlock').toggle(); }); });
Отправлено 24 Июнь 2016 - 04:22
.block.filters .filter { margin: 5px 0; font-size: 14px; color: #333744; }
.block.filters .filter { margin: 5px 0; font-size: 14px; color: #333744; padding: 10px; border-bottom: 1px solid #eee; }
.str { text-transform: uppercase; font-size: 14px; }
.str { text-transform: uppercase; font-size: 14px; display: block; cursor: pointer; }
Ольга 94 (23 Июнь 2016 - 12:32) писал:
<a href="#" class="slide_but">В КОРЗИНУ</a>
<div id="slider"> <!-- Slides Container -->
Отправлено 24 Июнь 2016 - 11:28
Vaccina (24 Июнь 2016 - 04:22) писал:
.block.filters .filter { margin: 5px 0; font-size: 14px; color: #333744; }
.block.filters .filter { margin: 5px 0; font-size: 14px; color: #333744; padding: 10px; border-bottom: 1px solid #eee; }
.str { text-transform: uppercase; font-size: 14px; }
.str { text-transform: uppercase; font-size: 14px; display: block; cursor: pointer; }
<a href="#" class="slide_but">В КОРЗИНУ</a>
<div id="slider"> <!-- Slides Container -->
Отправлено 24 Июнь 2016 - 12:07
Ольга 94 (23 Июнь 2016 - 12:32) писал:
Отправлено 29 Июнь 2016 - 14:36
Ольга 94 (24 Июнь 2016 - 12:07) писал:
<span class="str"><b>{filter_prop_list.NAME}</b></span>И заменить ее на
<div class="name_filter"> <b>{filter_prop_list.NAME}</b><span class="open-sub"></span> </div>Затем найти вот такую строку
<span class="str"><b>{filter_attr_list.NAME}</b></span>И заменить ее на
<div class="name_filter"> <b>{filter_attr_list.NAME}</b><span class="open-sub"></span> </div>
/*раскрывающийся фильтр*/ $(document).ready(function() { $('.filter > .contentTbodySearchFilterBlock').hide(); $('.filter > .str').click(function() { $(this).closest('.filter').find('.contentTbodySearchFilterBlock').toggle(); }); });И заменяем его на
$(document).ready(function() { $('.filter > .contentTbodySearchFilterBlock').hide(); $('.filter:first> .contentTbodySearchFilterBlock').show(); $('.filter:first').addClass('active'); $('.filter:first .open-sub').addClass('active'); $('.filter > .name_filter').click(function() { $(this).closest('.filter').find('.contentTbodySearchFilterBlock').toggle(); if ($(this).parent().hasClass('active')){ $(this).children('.open-sub').removeClass('active'); $(this).parent().removeClass('active'); }else{ $(this).parent().addClass('active'); $(this).children('.open-sub').addClass('active'); } }); });
.filter .open-sub:before { content: "\f107"; font-family: 'FontAwesome'; color: #111111; } .filter .open-sub { float: right; right: 5px; position: absolute; padding: 0 10px; } .filter.active .open-sub.active:before { content: "\f106"; color: #111111; }
Отправлено 11 Июль 2016 - 10:50
Stasya (29 Июнь 2016 - 14:36) писал:
<span class="str"><b>{filter_prop_list.NAME}</b></span>И заменить ее на
<div class="name_filter"> <b>{filter_prop_list.NAME}</b><span class="open-sub"></span> </div>Затем найти вот такую строку
<span class="str"><b>{filter_attr_list.NAME}</b></span>И заменить ее на
<div class="name_filter"> <b>{filter_attr_list.NAME}</b><span class="open-sub"></span> </div>
/*раскрывающийся фильтр*/ $(document).ready(function() { $('.filter > .contentTbodySearchFilterBlock').hide(); $('.filter > .str').click(function() { $(this).closest('.filter').find('.contentTbodySearchFilterBlock').toggle(); }); });И заменяем его на
$(document).ready(function() { $('.filter > .contentTbodySearchFilterBlock').hide(); $('.filter:first> .contentTbodySearchFilterBlock').show(); $('.filter:first').addClass('active'); $('.filter:first .open-sub').addClass('active'); $('.filter > .name_filter').click(function() { $(this).closest('.filter').find('.contentTbodySearchFilterBlock').toggle(); if ($(this).parent().hasClass('active')){ $(this).children('.open-sub').removeClass('active'); $(this).parent().removeClass('active'); }else{ $(this).parent().addClass('active'); $(this).children('.open-sub').addClass('active'); } }); });
.filter .open-sub:before { content: "\f107"; font-family: 'FontAwesome'; color: #111111; } .filter .open-sub { float: right; right: 5px; position: absolute; padding: 0 10px; } .filter.active .open-sub.active:before { content: "\f106"; color: #111111; }
Отправлено 11 Июль 2016 - 18:12
Ольга 94 (11 Июль 2016 - 10:50) писал:
.filter .open-sub { float: right; right: 5px; position: absolute; padding: 0 10px; }и замените на
.filter .open-sub { float: right; right: 22px; position: absolute; padding: 0 10px; }найдите
.block.filters .filter { margin: 5px 0; font-size: 14px; color: #333744; padding: 10px; border-bottom: 1px solid #eee; }и замените на
.block.filters .filter { margin: 5px 0; font-size: 14px; color: #333744; overflow-y: auto; padding: 10px; border-bottom: 1px solid #eee; }найдите
.contentTbodySearchFilterBlock { margin-top: 10px; margin-bottom: 15px; max-height: 200px; overflow-y: auto; min-height: 60px; }и замените на
.contentTbodySearchFilterBlock { margin-top: 10px; margin-bottom: 15px; max-height: 200px; min-height: 60px; }
0 пользователей, 0 гостей, 0 анонимных