Home Forums WoodMart support forum List Layout Browser Width Reply To: List Layout Browser Width

#75854

Artem Temos
Keymaster

Hi,

Try to add the following code snippet

@media (min-width: 769px) and (max-width: 1159px) {
	div.product-list-item .product-wrapper {
		flex-wrap: wrap;
		text-align: center;
	}
	div.product-list-item:not(:last-child) .product-wrapper {
		padding-bottom: 0;
		border-bottom: none;
	}
	div.product-list-item .product-element-top {
		flex: 1 1 100%;
		max-width: 100%;
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
}

Regards