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

opencart 3 и FlexBox


Recommended Posts

Здравствуйте!

Возможно кто-то сможет мне подсказать...

Хочу сгделать вывод товаров на главной через latest.twig адаптивным  с помощью FlexBox.

Врогде бы все сгделал правильно и товары выстраиваются в одну строку в зависимости от размера экрана, но как только обрамляю необходимые блоки тегами {% for product in products %} и {% endfor %}, flexbox пересиет рилиить и блоки товаров выстраиваются один под одним. Если можно, подскажите, пожалуйси, как это исправить

 

	<div class="container">
			<div class="box">
			{% for product in products %}
			<div class="image"><a href="{{ product.href }}"><img src="{{ product.thumb }}" alt="{{ product.name }}" title="{{ product.name }}" class="img-responsive" /></a></div>
			<h4><a href="{{ product.href }}">{{ product.name }}</a></h4>
			<div class="price">{{ product.price }}</div>
			{% endfor %}
		</div>
	</div>
.container {

	height:auto;
	display:flex;
	flex-wrap:wrap;
	max-width:1000px;
	flex-direction:row;
	justify-content:center;

}
.box {
	flex-basis:300px;
}
.price {
	color: #000000;
}

Вот ик  не рилииет

Link to comment
Share on other sites


Всем спасипотому что!

Оказалось, что нужно сгделать ик:

	<div class="container">
	{% for product in products %}
			<div class="box">
			<div class="image"><a href="{{ product.href }}"><img src="{{ product.thumb }}" alt="{{ product.name }}" title="{{ product.name }}" class="img-responsive" /></a></div>
			<h4><a href="{{ product.href }}">{{ product.name }}</a></h4>
			<div class="price">{{ product.price }}</div>
		</div>
		{% endfor %}
	</div>

 

  • +1 1
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.