Site logo

Archived topic

photos in products are to big

1 reply · Started by Forum User on October 12, 2021

Viewing posts 1–2 of 2

Good day I have a question.

How do I make the photos of the products a bit smaller, here an example:
http://www.marktstore.nl/index.php/product/geboorte-knuffel/
I have posted three pictures of an elephant but I think they are too big
How can I make them a bit smaller? thanks in advance!

Hi there,

the Niche theme has some custom styles for that layout.
Go to Customizer > Additional CSS and look for the following:

.woo-summary-wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto;
    margin-bottom: 80px;
}

This line sets the column widths: grid-template-columns: 60% 40%;

Change the % to suit your need eg. grid-template-columns: 50% 50%; which will make the Images and the Summary the same width.

This archived topic is closed to new replies.