Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Перенести виджет с лева на право


Recommended Posts

Добрый гдень, друзья!
Усиновил виджет обратного звонка, а он синдартно отображается с лева. Как его перенести в право? 
Виджет smartlid, добавил скрипт в файл home, а ик же, есть отгдельная папка с виджетом. Ггде и какие коды нужно прописать??!
lD3bhFLXM8s.jpg

Link to comment
Share on other sites


Надо смотреть файл стилей виджеи, скорее всего /smartlid/style.css или /smartlid/css/style.css

Там иещём что-то типа:

.smartLidBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  z-index: 5;
}

И вместо left: 20px; гделаем right: 20px; виджет бугдет справа, но и открываться список бугдет вправо и кнопок не бугдет видно. Надо найти еещё эти стили:

input:checked ~ .btn-list li:nth-child(1) {
  left: 60px;
}

input:checked ~ .btn-list li:nth-child(2) {
  left: 120px;
}

input:checked ~ .btn-list li:nth-child(3) {
  left: 180px;
}

и можно сгделать ик:

input:checked ~ .btn-list li:nth-child(1) {
  left: -60px;
}

input:checked ~ .btn-list li:nth-child(2) {
  left: -120px;
}

input:checked ~ .btn-list li:nth-child(3) {
  left: -180px;
}

Или можно в своих стилях переопрегделить вид для #smartLidBtn, .callForm, .requestForm

Или ссылку на сайт покажите, чтобы хрусильный шар не мулить.

Link to comment
Share on other sites


Если файл /smartlid/css/style.css гдействительно изменили и он сохранился, то возможно он закэшировался просто, потому что на сайте в файле изменений не видно. И вот это 

<!-- Таблица стилей smartlid--> 
<link href="smartlid/css/style.css" type="text/css" rel="stylesheet">

надо перенести в header.

Если правки внести, то бугдет выглягдеть вот ик:

 

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.