On my homepage I just have one featured product. The image on my phone is a little off to the right sode instead of being aligned in the center. But on product page it is perfectly aligned. So I just want the featured product to be as nicely aligned as product page alignment.
I checked your homepage on mobile, and you’re right—the featured product image is slightly off-center compared to how it’s aligned on the product page. This usually happens due to differences in layout or padding/margin between sections.
To fix this, you can try adding a bit of custom CSS to your theme to center the featured product image. Here’s a quick fix:
If you’re using Shopify’s theme editor, you can go to Online Store > Themes > Customize > Theme settings > Custom CSS (if available), or edit your CSS file directly (like base.css or theme.css).
This issue is caused by the following CSS. If you remove this code from your base.css file, your image will automatically align to the center: @media (max-width: 749px) {
.grid–peek.slider .grid__item:first-of-type {
margin-left: 1.5rem;
}
}