Перейти к содержимому


Удаление Значков Преимуществ


  • Авторизуйтесь для ответа в теме
Сообщений в теме: 3

#1 Stas_Y

Stas_Y

    Активный участник

  • Пользователи
  • PipPipPipPip
  • 548 сообщений

Отправлено 20 Август 2015 - 22:21

Подскажите как удалить значки преимуществ вместе со стокой (серая полоса)?!

Прикрепленные изображения

  • 1.jpg


#2 Vaccina

Vaccina

    Активный участник

  • Модераторы
  • 24 353 сообщений

Отправлено 21 Август 2015 - 03:44

В шаблоне HTML найдите и удалите:
<!-- Баннеры на главной -->
		{% IF index_page %}
		<div class="yt-bannertop">
		  <div class="container">
			<div class="row">
			  <div class="banner-top">
				<ul>
				  <li class="li-1 col-lg-4 col-md-4 col-sm-4 col-xs-12"><a class="banner-top-img" href="#"><img src="{ASSETS_IMAGES_PATH}ico1-banner-top2.jpg?design=orange" alt=""></a>
					<div class="li1-content"><a href="#">Бесплатная доставка!</a>
					  <p>Доставка по городу и области Бесплатна!</p>
					</div>
				  </li>
				  <li class="li-2 col-lg-4 col-md-4 col-sm-4 col-xs-12"><a class="banner-top-img" href="#"><img src="{ASSETS_IMAGES_PATH}ico2-banner-top2.jpg?design=orange" alt=""></a>
					<div class="li2-content"><a href="#">30 дней Гарантии</a>
					  <p>Вы можете вернуть товар в течении 30 дней после получения заказа</p>
					</div>
				  </li>
				  <li class="li-3 col-lg-4 col-md-4 col-sm-4 col-xs-12"><a class="banner-top-img" href="#"><img src="{ASSETS_IMAGES_PATH}ico3-banner-top2.jpg?design=orange" alt=""></a>
					<div class="li3-content"><a href="#">Прием заказов 24/7</a>
					  <p>Оформите заказ в интернет-магазине "{SETTINGS_STORE_NAME}" Прямо сейчас!</p>
					</div>
				  </li>
				</ul>
			  </div>
			</div>
		  </div>
		</div>
		{% ENDIF %}
		<!-- /END Баннеры на главной -->


#3 Stas_Y

Stas_Y

    Активный участник

  • Пользователи
  • PipPipPipPip
  • 548 сообщений

Отправлено 21 Август 2015 - 03:50

Спасибо!!!! Приятно с вами работать!)
Скажите а как, переместить корзину и убрать серый фон в самом верхнем меню?

Фото прилагаю

Прикрепленные изображения

  • 1.jpg


#4 Vaccina

Vaccina

    Активный участник

  • Модераторы
  • 24 353 сообщений

Отправлено 21 Август 2015 - 06:27

1. Про серый фон ответила вам в другой теме.
2. В шаблоне HTML найдите и удалите:
<!-- Корзина и Поиск -->
			 <div class="header-top-right col-lg-3 col-md-3 col-sm-6 col-xs-12">
			 <!-- Поиск -->
			 <form id="search_mini_form2" action="http://{NET_DOMAIN}/search" method="get">
			 <div class="form-search">
				 <input id="search" type="text" name="q" value="" class="search-string" placeholder="Поиск по магазину...">
				 <button type="submit" title="Искать" class="button search-submit"></button>
			 </div>
			 </form>
			 <div class="header-right-mobile">
			 <!-- Корзина -->
			 <div class="block mini-cartpro sm-cartpro cart-header">
				 <div class="block-title cart-count-block">
				 {% IF cart_count_empty %}
					 <span class="empty">Корзина пуста</span>
				 {% ELSE %}
					 <span class="not-empty"><a href="{CART_URL}"><span class="cart-count">{CART_COUNT_TOTAL}</span> товар{CART_COUNT_TOTAL| gen_word_end("","а","ов")}</a></span>
					 <span class="empty" style="display:none;">Корзина пуста</span>
				 {% ENDIF %}
				 </div>
				 <!-- Выпадающая корзина-->
				 <div class="block-content dropdown-cart" {% IF MOD_LNAME = cart %}style="display:none;"{% ENDIF %}>
				 <div class="block-inner" {% IF cart_count_empty %}style="display:none;"{% ENDIF %}>
					 <ul id="cart-sidebar" class="mini-products-list">
					 {% FOR cart_items %}
					 <li class="cart-item">
						 <a href="{cart_items.GOODS_URL}" title="{cart_items.GOODS_NAME}" class="product-image"><img src="{% IF cart_items.GOODS_IMAGE_EMPTY %}{ASSETS_IMAGES_PATH}no-photo-icon.png?design=orange{% ELSE %}{cart_items.GOODS_IMAGE_ICON}{% ENDIF %}" alt="{cart_items.GOODS_NAME}" class="goods-image-icon"></a>
						 <a href="{cart_items.GOODS_URL}" class="product-name">{cart_items.GOODS_NAME}</a>
						 <span class="price" data-price="{cart_items.GOODS_MOD_PRICE_NOW}">{cart_items.GOODS_MOD_PRICE_NOW | money_format}</span>
						 <span class="title-qty">Количество: <span class="qty-val">{cart_items.ORDER_LINE_QUANTITY}</span></span>
						 <a data-href="{cart_items.ORDER_LINE_DELETE_URL}" data-count="{cart_items.ORDER_LINE_QUANTITY}" title="Удалить позицию" class="product-remove"></a>
					 </li>
					 {% ENDFOR %}
					 </ul>
					 <div class="bottom-action actions">
					 <a class="button btn-gotocart remove-products" title="Очистить корзину" data-href="{CART_TRUNCATE_URL}"></a>
					 <a class="button btn-checkout" title="Перейти к оформлению заказа" href="{CART_URL}"></a>
					 <div class="summary">
						 {% FOR cart_sum %}
						 <span class="subtotal">
						 <span class="label-total">Итого:</span> <span class="total-sum">{cart_sum.NOW_WITH_DELIVERY_AND_DISCOUNT | money_format}</span>
						 </span>
						 {% ENDFOR %}
					 </div>
					 </div>
				 </div>
				 </div>
				 <!-- /END Выпадающая корзина-->
			 </div>
			 <!-- /END Корзина -->
			 <form id="search_mini_form" action="http://{NET_DOMAIN}/search" method="get">
				 <div class="form-search">
				 <input id="search" type="text" name="q" value="" class="search-string" placeholder="Поиск по магазину...">
				 <button type="submit" title="Искать" class="button search-submit"></button>
				 </div>
			 </form>
			 </div>
			 </div>

далее найдите:
<!-- Каталог в шапке -->
			 <div class="yt-main-menu col-lg-9 col-md-10 col-xs-12">
замените на:
<!-- Каталог в шапке -->
			 <div class="yt-main-menu col-lg-6 col-md-10 col-xs-12">

далее найдите:
<!-- Адаптивный каталог с подкатегориями -->
			 <div id="resmenu_sidebar">
				 <ul class="nav-menu clearfix">
				 {% FOR catalog_full %}
					 {% IF catalog_full.FIRST %}{% IFNOT catalog_full.LEVEL = 0 %}<ul class="sub">{% ENDIF %}{% ENDIF %}
					 <li {% IF catalog_full.HIDE %}style="display:none;"{% ENDIF %} class="{% IF catalog_full.ISSET_SUB %}parent{% ENDIF %} {% IF catalog_full.LEVEL = 0 %}subhead{% ENDIF %} {% IF catalog_full.CURRENT || catalog_full.CURRENT_PARENT %}active{% ENDIF %}">
						 <a href="{catalog_full.URL}" {% IF catalog_full.CURRENT %}class="active"{% ENDIF %}>{% IF catalog_full.ISSET_SUB %}<span class="open-sub"></span>{% ENDIF %}{catalog_full.NAME}</a>
					 {% IF catalog_full.ISSET_SUB=0 %}</li>{% ENDIF %}
					 {% IF catalog_full.LAST %}{%FOR out%}</ul>{%IFNOT catalog_full.out.LAST%}</li>{%ENDIF%}{%ENDFOR%}{% ENDIF %}
				 {% ENDFOR %}
				 </ul>
			 </div>
			 <!-- /END Адаптивный каталог с подкатегориями -->
			 </div>

после него вставьте:
<!-- Корзина и Поиск -->
			 <div class="header-top-right col-lg-3 col-md-3 col-sm-6 col-xs-12">
			 <!-- Поиск -->
			 <form id="search_mini_form2" action="http://{NET_DOMAIN}/search" method="get">
			 <div class="form-search">
				 <input id="search" type="text" name="q" value="" class="search-string" placeholder="Поиск по магазину...">
				 <button type="submit" title="Искать" class="button search-submit"></button>
			 </div>
			 </form>
			 <div class="header-right-mobile">
			 <!-- Корзина -->
			 <div class="block mini-cartpro sm-cartpro cart-header">
				 <div class="block-title cart-count-block">
				 {% IF cart_count_empty %}
					 <span class="empty">Корзина пуста</span>
				 {% ELSE %}
					 <span class="not-empty"><a href="{CART_URL}"><span class="cart-count">{CART_COUNT_TOTAL}</span> товар{CART_COUNT_TOTAL| gen_word_end("","а","ов")}</a></span>
					 <span class="empty" style="display:none;">Корзина пуста</span>
				 {% ENDIF %}
				 </div>
				 <!-- Выпадающая корзина-->
				 <div class="block-content dropdown-cart" {% IF MOD_LNAME = cart %}style="display:none;"{% ENDIF %}>
				 <div class="block-inner" {% IF cart_count_empty %}style="display:none;"{% ENDIF %}>
					 <ul id="cart-sidebar" class="mini-products-list">
					 {% FOR cart_items %}
					 <li class="cart-item">
						 <a href="{cart_items.GOODS_URL}" title="{cart_items.GOODS_NAME}" class="product-image"><img src="{% IF cart_items.GOODS_IMAGE_EMPTY %}{ASSETS_IMAGES_PATH}no-photo-icon.png?design=orange{% ELSE %}{cart_items.GOODS_IMAGE_ICON}{% ENDIF %}" alt="{cart_items.GOODS_NAME}" class="goods-image-icon"></a>
						 <a href="{cart_items.GOODS_URL}" class="product-name">{cart_items.GOODS_NAME}</a>
						 <span class="price" data-price="{cart_items.GOODS_MOD_PRICE_NOW}">{cart_items.GOODS_MOD_PRICE_NOW | money_format}</span>
						 <span class="title-qty">Количество: <span class="qty-val">{cart_items.ORDER_LINE_QUANTITY}</span></span>
						 <a data-href="{cart_items.ORDER_LINE_DELETE_URL}" data-count="{cart_items.ORDER_LINE_QUANTITY}" title="Удалить позицию" class="product-remove"></a>
					 </li>
					 {% ENDFOR %}
					 </ul>
					 <div class="bottom-action actions">
					 <a class="button btn-gotocart remove-products" title="Очистить корзину" data-href="{CART_TRUNCATE_URL}"></a>
					 <a class="button btn-checkout" title="Перейти к оформлению заказа" href="{CART_URL}"></a>
					 <div class="summary">
						 {% FOR cart_sum %}
						 <span class="subtotal">
						 <span class="label-total">Итого:</span> <span class="total-sum">{cart_sum.NOW_WITH_DELIVERY_AND_DISCOUNT | money_format}</span>
						 </span>
						 {% ENDFOR %}
					 </div>
					 </div>
				 </div>
				 </div>
				 <!-- /END Выпадающая корзина-->
			 </div>
			 <!-- /END Корзина -->
			 <form id="search_mini_form" action="http://{NET_DOMAIN}/search" method="get">
				 <div class="form-search">
				 <input id="search" type="text" name="q" value="" class="search-string" placeholder="Поиск по магазину...">
				 <button type="submit" title="Искать" class="button search-submit"></button>
				 </div>
			 </form>
			 </div>
			 </div>


Далее в main.css найдите:
.header-content .yt-main-menu {
padding: 40px 0px 20px;
float: right;
}
замените на:
.header-content .yt-main-menu {
padding: 40px 0px 20px;
float: left;
}
далее найдите:
/* Корзина */
.header-top .mini-cartpro {position: relative;}
.header-top .mini-cartpro .block-title {background-image: url('{ASSETS_IMAGES_PATH}ico-cart.png?design=orange');background-repeat: no-repeat;background-position: 15px 12px;background-color: #f79242;padding: 18px 18px 12px 50px;color: #fff;height: 50px;margin-left: 1px;}
.header-top .mini-cartpro .block-title:hover {background-color: rgba(247,146,66,.7);}
.header-top .mini-cartpro .block-title .btn-cart-emty, .header-top .mini-cartpro .block-title a.btn-toggle {font-size: 0;z-index: 1;top: 0;right: 0;position: absolute;width: 100%;height: 50px;}
.header-top .mini-cartpro .block-title a {color: #fff;font-size:120%;}
.header-top .mini-cartpro .block-content .block-inner {position: absolute;top: 50px;right: 0;z-index: 999;overflow: hidden !important;background: #FFF;width: 360px;border-top: 6px solid transparent;border-color: #f79242;transition-property: margin-top, opacity, visibility;transition-duration: 0.5s, 0.5s, 0.5s;-webkit-transition-property: margin-top, opacity, visibility;-webkit-transition-duration: 0.5s, 0.5s, 0.5s;opacity: 0;visibility: hidden;}
.header-top .sm-cartpro:hover .block-content .block-inner {display:block;height:auto;opacity: 1;visibility: visible;}
.header-top .mini-cartpro .block-content .mini-products-list {padding: 20px 10px;max-height: 370px;overflow-y: auto;list-style: none;overflow-x:hidden;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item {margin-bottom: 30px;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item:last-child {margin-bottom: 10px;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item .product-image {float: left;margin-right: 10px;padding: 5px;height:85px;width:85px;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item .product-image img {display:block;margin:0 auto;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item .product-details {float: left;width: 67%;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item a.product-name {font-size: 116.6%;line-height: 12px;display:block;height:25px;overflow:hidden;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item a.product-name :hover {color: #f79242;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item .price {font-size: 150%;display: block;padding: 7px 0;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item .title-qty {float:left;font-size:110%;}
.header-top .mini-cartpro .block-content .mini-products-list .cart-item .qty-val {border-radius: 100%;-moz-border-radius: 100%;khtml-border-radius: 100%;-webkit-border-radius: 100%;width: 38px;height: 38px;border: 1px solid #e4e4e4;display: inline-block;text-align: center;line-height: 38px;font-size: 116.6%;}
.header-top .mini-cartpro .block-content .mini-products-list li.cart-item a.product-remove {background-image: url('{ASSETS_IMAGES_PATH}ico-edit-remove.png?design=orange');background-repeat: no-repeat;background-position: 0 -92px;display: block;width: 17px;height: 17px;float: right;}
.header-top .mini-cartpro .block-content .mini-products-list li.cart-item a.product-remove:hover {background-position: 0 -61px;}
.header-top .mini-cartpro .block-content .bottom-action {height: 67px;padding: 15px 0 0 10px;background-color: #f79242;}
.header-top .mini-cartpro .block-content .bottom-action .button {width: 38px;height: 38px;border-radius: 100%;-moz-border-radius: 100%;khtml-border-radius: 100%;-webkit-border-radius: 100%;background-color: #fff;background-repeat: no-repeat;float:left;margin-right:15px;}
.header-top .mini-cartpro .block-content .bottom-action .button.btn-gotocart:after {content: "\f014";font-family: 'FontAwesome';font-size: 28px;color: #E1464D;margin-left: -11px;top: 4px;position: relative;}
.header-top .mini-cartpro .block-content .bottom-action .button.btn-gotocart:hover {background-color: #f79242;box-shadow: 0 0 0 2px #fff;-webkit-box-shadow: 0 0 0 2px #fff;-moz-box-shadow: 0 0 0 2px #fff;}
.header-top .mini-cartpro .block-content .bottom-action .button.btn-gotocart:hover:after {color: #fff;}
.header-top .mini-cartpro .block-content .bottom-action .button.btn-checkout {background-image: url('{ASSETS_IMAGES_PATH}minicart-action.png?design=orange');background-position: 4px -41px;}
.header-top .mini-cartpro .block-content .bottom-action .button.btn-checkout:hover {background-position: 4px 4px;background-color: #f79242;box-shadow: 0 0 0 2px #fff;-webkit-box-shadow: 0 0 0 2px #fff;-moz-box-shadow: 0 0 0 2px #fff;}
.header-top .mini-cartpro .block-content .summary {float: right;line-height: 38px;margin-right: 10px;}
.header-top .mini-cartpro .block-content .summary .subtotal {color: #fff;font-size: 150%;}

замените на:
/* Корзина */
.header-content .mini-cartpro {position: relative;}
.header-content .mini-cartpro .block-title {background-image: url('{ASSETS_IMAGES_PATH}ico-cart.png?design=orange');background-repeat: no-repeat;background-position: 15px 12px;background-color: #f79242;padding: 18px 18px 12px 50px;color: #fff;height: 50px;margin-left: 1px;}
.header-content .mini-cartpro .block-title:hover {background-color: rgba(247,146,66,.7);}
.header-content .mini-cartpro .block-title .btn-cart-emty, .header-content .mini-cartpro .block-title a.btn-toggle {font-size: 0;z-index: 1;top: 0;right: 0;position: absolute;width: 100%;height: 50px;}
.header-content .mini-cartpro .block-title a {color: #fff;font-size:120%;}
.header-content .mini-cartpro .block-content .block-inner {position: absolute;top: 50px;right: 0;z-index: 999;overflow: hidden !important;background: #FFF;width: 360px;border-top: 6px solid transparent;border-color: #f79242;transition-property: margin-top, opacity, visibility;transition-duration: 0.5s, 0.5s, 0.5s;-webkit-transition-property: margin-top, opacity, visibility;-webkit-transition-duration: 0.5s, 0.5s, 0.5s;opacity: 0;visibility: hidden;}
.header-content .sm-cartpro:hover .block-content .block-inner {display:block;height:auto;opacity: 1;visibility: visible;}
.header-content .mini-cartpro .block-content .mini-products-list {padding: 20px 10px;max-height: 370px;overflow-y: auto;list-style: none;overflow-x:hidden;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item {margin-bottom: 30px;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item:last-child {margin-bottom: 10px;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item .product-image {float: left;margin-right: 10px;padding: 5px;height:85px;width:85px;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item .product-image img {display:block;margin:0 auto;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item .product-details {float: left;width: 67%;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item a.product-name {font-size: 116.6%;line-height: 12px;display:block;height:25px;overflow:hidden;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item a.product-name :hover {color: #f79242;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item .price {font-size: 150%;display: block;padding: 7px 0;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item .title-qty {float:left;font-size:110%;}
.header-content .mini-cartpro .block-content .mini-products-list .cart-item .qty-val {border-radius: 100%;-moz-border-radius: 100%;khtml-border-radius: 100%;-webkit-border-radius: 100%;width: 38px;height: 38px;border: 1px solid #e4e4e4;display: inline-block;text-align: center;line-height: 38px;font-size: 116.6%;}
.header-content .mini-cartpro .block-content .mini-products-list li.cart-item a.product-remove {background-image: url('{ASSETS_IMAGES_PATH}ico-edit-remove.png?design=orange');background-repeat: no-repeat;background-position: 0 -92px;display: block;width: 17px;height: 17px;float: right;}
.header-content .mini-cartpro .block-content .mini-products-list li.cart-item a.product-remove:hover {background-position: 0 -61px;}
.header-content .mini-cartpro .block-content .bottom-action {height: 67px;padding: 15px 0 0 10px;background-color: #f79242;}
.header-content .mini-cartpro .block-content .bottom-action .button {width: 38px;height: 38px;border-radius: 100%;-moz-border-radius: 100%;khtml-border-radius: 100%;-webkit-border-radius: 100%;background-color: #fff;background-repeat: no-repeat;float:left;margin-right:15px;}
.header-content .mini-cartpro .block-content .bottom-action .button.btn-gotocart:after {content: "\f014";font-family: 'FontAwesome';font-size: 28px;color: #E1464D;margin-left: -11px;top: 4px;position: relative;}
.header-content .mini-cartpro .block-content .bottom-action .button.btn-gotocart:hover {background-color: #f79242;box-shadow: 0 0 0 2px #fff;-webkit-box-shadow: 0 0 0 2px #fff;-moz-box-shadow: 0 0 0 2px #fff;}
.header-content .mini-cartpro .block-content .bottom-action .button.btn-gotocart:hover:after {color: #fff;}
.header-content .mini-cartpro .block-content .bottom-action .button.btn-checkout {background-image: url('{ASSETS_IMAGES_PATH}minicart-action.png?design=orange');background-position: 4px -41px;}
.header-content .mini-cartpro .block-content .bottom-action .button.btn-checkout:hover {background-position: 4px 4px;background-color: #f79242;box-shadow: 0 0 0 2px #fff;-webkit-box-shadow: 0 0 0 2px #fff;-moz-box-shadow: 0 0 0 2px #fff;}
.header-content .mini-cartpro .block-content .summary {float: right;line-height: 38px;margin-right: 10px;}
.header-content .mini-cartpro .block-content .summary .subtotal {color: #fff;font-size: 150%;}


далее найдите:
/* Поиск */
.header-top .header-top-right #search_mini_form {background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 10px 12px;width: 52px;height: 50px;border-left: 1px solid #f2f2f2;position: relative;background-color: #f79242;}
.header-top .header-top-right #search_mini_form .form-search {opacity: 0;filter: alpha(opacity = 0);visibility: hidden;position: absolute;top: 0;right: 0;height: 50px;z-index: 1;}
.header-top .header-top-right #search_mini_form .form-search .button {float: right;background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 11px 12px;width: 52px;height: 50px;cursor:pointer;}
.header-top .header-top-right #search_mini_form:hover {background-color: rgba(247,146,66,.5);}
.header-top .header-top-right #search_mini_form .form-search #search {position: absolute;top: 0;right: 52px;float: right;height: 50px;border: 7px solid transparent;border-color: #f79242;width: 50px;font-size: 100%;}
.header-top .header-top-right #search_mini_form:hover .form-search {opacity: 1; filter:alpha(opacity = 100);visibility:visible;z-index:1;}
.header-top .header-top-right #search_mini_form:hover .form-search #search {width: 200px;}
/* Поиск для адаптивной версии*/
.header-top .header-top-right #search_mini_form2 {display:none;}
.header-top .header-top-right #search_mini_form2 {background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 10px 12px;width: 52px;height: 50px;border-left: 1px solid #f2f2f2;background-color: #f79242;float:right;position: absolute;top: 0;right: 0;}
.header-top .header-top-right #search_mini_form2 .form-search {opacity: 1;filter: alpha(opacity = 100);visibility: visible;position: absolute;top: 0;right: 0;height: 50px;z-index: 1;}
.header-top .header-top-right #search_mini_form2 .form-search .button {float: right;background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 11px 12px;width: 52px;height: 50px;cursor:pointer;}
.header-top .header-top-right #search_mini_form2:hover {background-color: rgba(247,146,66,.5);}
.header-top .header-top-right #search_mini_form2 .form-search #search {position: absolute;right: 52px;height: 50px;border: 7px solid transparent;border-color: #f79242;width: 150px;font-size: 92%;margin-right:1px;}
замените на:
/* Поиск */
.header-content .header-top-right #search_mini_form {background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 10px 12px;width: 52px;height: 50px;border-left: 1px solid #f2f2f2;position: relative;background-color: #f79242;}
.header-content .header-top-right #search_mini_form .form-search {opacity: 0;filter: alpha(opacity = 0);visibility: hidden;position: absolute;top: 0;right: 0;height: 50px;z-index: 1;}
.header-content .header-top-right #search_mini_form .form-search .button {float: right;background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 11px 12px;width: 52px;height: 50px;cursor:pointer;}
.header-content .header-top-right #search_mini_form:hover {background-color: rgba(247,146,66,.5);}
.header-content .header-top-right #search_mini_form .form-search #search {position: absolute;top: 0;right: 52px;float: right;height: 50px;border: 7px solid transparent;border-color: #f79242;width: 50px;font-size: 100%;}
.header-content .header-top-right #search_mini_form:hover .form-search {opacity: 1; filter:alpha(opacity = 100);visibility:visible;z-index:1;}
.header-content .header-top-right #search_mini_form:hover .form-search #search {width: 200px;}
/* Поиск для адаптивной версии*/
.header-content .header-top-right #search_mini_form2 {display:none;}
.header-content .header-top-right #search_mini_form2 {background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 10px 12px;width: 52px;height: 50px;border-left: 1px solid #f2f2f2;background-color: #f79242;float:right;position: absolute;top: 0;right: 0;}
.header-content .header-top-right #search_mini_form2 .form-search {opacity: 1;filter: alpha(opacity = 100);visibility: visible;position: absolute;top: 0;right: 0;height: 50px;z-index: 1;}
.header-content .header-top-right #search_mini_form2 .form-search .button {float: right;background-image: url('{ASSETS_IMAGES_PATH}ico-search.png?design=orange');background-repeat: no-repeat;background-position: 11px 12px;width: 52px;height: 50px;cursor:pointer;}
.header-content .header-top-right #search_mini_form2:hover {background-color: rgba(247,146,66,.5);}
.header-content .header-top-right #search_mini_form2 .form-search #search {position: absolute;right: 52px;height: 50px;border: 7px solid transparent;border-color: #f79242;width: 150px;font-size: 92%;margin-right:1px;}







Количество пользователей, читающих эту тему: 0

0 пользователей, 0 гостей, 0 анонимных