Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

уменьшить ширину правой части карточки товара opencart


 Share

Recommended Posts

Всем доброго времени суток!

Подскажите пожалуйста не опытному человеку, который только 3 день с опенкартом как мне пошагово сделать поменьше третью колонку на странице карточки товара? А именно там где название, кнопка купить и т.д. Version 2.3.0.2  ссылка на карточку товара тут 

Спасибо!

Link to comment
Share on other sites


файл: catalog\view\theme\default\template\product\product.tpl

строка где-то №19: вместо <?php $class = 'col-sm-6'; ?> пишем <?php $class = 'col-sm-8'; ?>

 

строка где-то №117: вместо <?php $class = 'col-sm-6'; ?> пишем <?php $class = 'col-sm-4'; ?>

 

image.png.e785e51b65a5c9d0abf22bfdc7bd9148.png

Edited by NDemidov
Link to comment
Share on other sites


11 часов назад, NDemidov сказал:

файл: catalog\view\theme\default\template\product\product.tpl

строка где-то №19: вместо <?php $class = 'col-sm-6'; ?> пишем <?php $class = 'col-sm-8'; ?>

 

строка где-то №117: вместо <?php $class = 'col-sm-6'; ?> пишем <?php $class = 'col-sm-4'; ?>

 

image.png.e785e51b65a5c9d0abf22bfdc7bd9148.png

 

Спасибо большое! Но теперь еще один вопрос)) Как сделать чтобы текст не выходил?

 

с.png

Link to comment
Share on other sites


8 минут назад, poptot сказал:

 

Спасибо большое! Но теперь еще один вопрос)) Как сделать чтобы текст не выходил?


Я вижу три варианта:
1. Уменьшить размер текста
файл: /catalog/view/theme/default/stylesheet/stylesheet.css
 

body[class*="product-"] h1 {
    font-size: 26px;
}

2. Сделать принудительный перенос слов

body[class*="product-"] h1 {
    word-wrap: break-word;
}

3. Изменить ширину колонок чуть по-другому
файл: catalog\view\theme\default\template\product\product.tpl

строка где-то №19: вместо <?php $class = 'col-sm-6'; ?> пишем <?php $class = 'col-sm-7'; ?>

 

строка где-то №117: вместо <?php $class = 'col-sm-6'; ?> пишем <?php $class = 'col-sm-5'; ?>

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.