Page 1 of 1

Change Product Grid Size

Posted: Tue Jan 31, 2017 5:18 am
by PieterF
Hello, I am changing my opencart 1.5 shop into a new 2.3 opencart.

I gonna make a total new webshop but now i have some problems with changing the product grid.
I already removed the, decr. text, compare and wishlist buttons.
Can somebody tell me how I can change the height of the product grid?

Here a image what I want:
Image

Left is current situation, right is what i want.

Thank you for helping!

Greetings Pieter

Re: Change Product Grid Size

Posted: Tue Jan 31, 2017 8:50 am
by IP_CAM
in the stylesheet.css, find something like this below, to declare a MIN-HEIIGHT value.
Ernie

Code: Select all

.product-thumb .caption {
	padding: 0 20px;
	min-height: 180px;
}
.product-list .product-thumb .caption {
	margin-left: 230px;
}
@media (max-width: 1200px) {
.product-grid .product-thumb .caption {
	min-height: 210px;
	padding: 0 10px;
}
}

Re: Change Product Grid Size

Posted: Wed Feb 01, 2017 3:18 am
by PieterF
Great, thank you!