Hi Members, Actually I am facing an issue that featued collection image are not showing in full ration. Even i tried to add new fetured collection but still facing same issue.
Assuming you understand that there are many different themes available for your Shopify store, and each theme has different features, a different look and different settings to adjust the look. Rounding image corners, for example, can be included in your theme, or be custom coded by the merchant. Likewise, setting different image ratios can be a theme feature, or have to be custom coded by the merchant. The choice is yours, but it sounds like if your theme doesn’t provide an option to change the image ratio, you could probably do much better using a different theme. Especially if you are having to constantly edit the theme code to make adjustments.
Can you provide any code that will help this.
Hi @Humvn
Could you share the link to your page?
It not actually an issue, that is just how the theme appearance is, it might be adjustable in the customization page you should check out some other themes that align with what you want, let me know if you need further assistance.
Hi, @Humvn
Can you please share the store URL so I can better support you?
Hello, @Humvn
Kindly provide your store URL please and if it is password protected, please share the password as well.
Thank You!
Without having the name of the theme, or the website url, it’s impossible to help you.
Hi @Humvn
This issue usually happens because of how the theme’s CSS or collection grid settings handle image aspect ratios. Here’s how you can fix it:
Option 1: Use “Adapt to image” ratio (no coding)
-
Go to your Shopify Admin → Online Store → Themes → Customize.
-
In the editor, click on the section where your Featured Collection is.
-
Look for an option like:
-
Image ratio or Crop image
-
Set it to “Adapt to image” or “Original aspect ratio”.
-
-
Save and check your storefront.
This works on themes like Dawn, Craft, Sense, etc.
Option 2: Edit theme CSS (if no “adapt” option)
If your theme doesn’t provide that setting:
-
Go to Online Store → Themes → Edit code.
-
Open:
Assets/base.cssorAssets/theme.css(depends on your theme name). -
Add this CSS at the very bottom:
.card__media, .media { aspect-ratio: auto !important; } .card__media img, .media img { object-fit: contain !important; } -
Save changes → refresh the page.
This ensures images keep their full ratio instead of being cropped to a square or rectangle.

