Page 1 of 1

how to remove blank space from product field (category list)

Posted: Sat Jul 14, 2018 1:21 am
by jennysboutique
how to remove blank space from product field (category list)

please see attachment.

Re: how to remove blank space from product field (category list)

Posted: Sun Jul 15, 2018 1:44 am
by IP_CAM
Well, this just does not look like a default OC Theme, you therefore better
contact your Theme Supplier, to help you on such.
In a default OC-2+ Theme, It's a MIN-HEIGHT Value in the stylesheet.css
file, and it possibly looks somehow like this:

Code: Select all

.product-thumb .caption {
padding: 0 20px;
min-height: 150px;
}
or this:

Code: Select all

.product-grid .product-thumb .caption {
min-height: 100px;
padding: 0 10px;
}
but more cannot be said, since Theme Creators likely use their own ways,
to define/declare Sections+CLASS Names, where such applies.
And since you mentioned no URL, nobody has a chance, to find out anyway ... :'(
Good Luck! ;)
Ernie
---

Re: how to remove blank space from product field (category list)

Posted: Mon Jul 16, 2018 12:46 am
by cyclops12
In your catalog/view/theme/default/stylesheet/stylesheet.css around line 554 find

Code: Select all

.product-thumb .caption {
	padding: 0 20px;
	min-height: 180px;
}
Change the min-height to suit your needs