Related products image sizes

Hello,

Is there a way in the theme to change the size of the related image product sizes? URL in secure note. I’ve already changed the settings in the appearance to be a crop of 1:1 but that doesn’t seem to adjust my images at all.

Thoughts?

Hello @fxground,

Thanks for writing in! I have inspected your page and I am seeing a very big featured images for the related products. It is because a certain CSS block is causing the issue. You have added this code somewhere:

.entry-featured {
    width: 965px;
    float: left;
    border: none;
    padding-top: 2em;
    padding-bottom: 2em;
}

You see, the 965 pixel width from the code above is also affecting your related products. You must edit the code and set the maximum width to 100% to make the featured images of the related product a little bit smaller. Perhaps your CSS code will be updated into:

.entry-featured {
    width: 965px;
    max-width: 100%;
    float: left;
    border: none;
    padding-top: 2em;
    padding-bottom: 2em;
}

Even with the code above, the featured image will still be bigger because you only have 2 columns. You would need to go to Cornerstone > Theme Options > WooCommerce and select 4 columns for the Related Products.

Best Regards.

Thanks, all fixed!

Glad to hear that, @fxground.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.