Product image full width mobile TASTE THEME

Topic summary

A user is experiencing an issue where product images don’t display at full width on mobile devices in the Taste Shopify theme.

Problem Details:

  • Product images appear constrained/not spanning full screen width on mobile
  • Issue occurs on product pages
  • User provided store link and credentials for reference

Proposed Solution:
Another community member provided CSS code to resolve the issue:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add custom CSS targeting mobile media queries to:
    • Set product media items to 100% width
    • Adjust slider padding to 0px
  • Save changes

The responder included a screenshot showing the expected result after applying the CSS fix. The solution appears to use media queries specifically for mobile screen widths (max-width: 749px) to force full-width product images.

Summarized with AI on November 14. AI used: claude-sonnet-4-5-20250929.

Hey, I am designing my store but I ran into a design problem, the product image is not full width on mobile! Could anybody help me with this? Thanks in regards! I will show the problem down below.

LINK:https://e8aaa0-3.myshopify.com/products/body-cleanser?variant=41569514881161

PASSWORD: mohwhi

THEME: taste

1 Like

Hi

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (max-width: 749px){
.product__media-list .product__media-item {
    width: 100% !important;
}
.slider.slider--mobile .slider__slide {
    padding-top: 0px !important;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!