Eliminate Product Image Display?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Hi all,

A Client has requested that every PRODUCT (not category or other areas) have no image associated with it. I thought that simply creating a 1x1 image would work and the system would automatically resize the display in the category listing and product detail. However, there are just large empty spaces. Is there an easy way to eliminate the areas where the product image gets displayed so that the large empty space goes away?

Any insight would be greatly appreciated :)

Thanks,
Jon
7 years ago
Forgot to mention this is V3.80. Thanks
7 years ago
Yes, this is a simple fix in your stylesheet.
If you do not have a custom theme, it is here:
/Themes/DefaultClean/Content/css/styles.css

Ctrl + F search for this:
.gallery

and just below that will be:

.gallery .picture-wrapper



and then:

.gallery .picture img,
.gallery .picture-thumbs img,
.variant-picture img


Adjust those values to affect the position and/or visibility of the product photo on your product detail page:

like:
.gallery .picture-wrapper {
    display:none;
}
7 years ago
Thanks very much, that helped me find precisely what I needed :)

Thanks again!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.