nysthar
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Product Catalog] Product thumb view problemHi
Yes media queries was the answer and now the thumbnail view is working fine.
Forum: Plugins
In reply to: [Ultimate Product Catalog] Product thumb view problemHi
When I use this custom css the rows goes wrong in firefox (I noticed that too).
.upcp-thumb-image-div {
height: auto;
}
or
.upcp-thumb-image-div a {
height: auto;
}But when I use pixel size in the height everything is fine
.upcp-thumb-image-div {
height: 200px;
}
or
.upcp-thumb-image-div a {
height: 200px;
}Maybe media queries solves this problem. Solid height makes thumbnail boxes too tall if the screen size gets smaller.
Forum: Plugins
In reply to: [Ultimate Product Catalog] Product thumb view problemHi EtoileWebDesign
I made some other changes to the site, but I haven’t found any solution to this problem. The problem occurs on row three. There is only one product in that row (TYPE 10) Other rows has four and the last row has two but that is because there is no more products.
Do you see four products on line three?
Forum: Plugins
In reply to: [Ultimate Product Catalog] Image alignHi EtoileWebDesign
Thank you for your answer. I have to admit that at first I didn`t know what to do. So I wrote all my own css again from the scratch and now it works. If I understood correct img width and height (.upcp-thumb-image) must be larger than the largest possible imagebox(.upcp-thumb-image-div). Then it fills the box always and the centering is not the problem anymore.