product image size in broadcast

Topic summary

A user wants to modify product page image sizing on mobile to display images at 80% width with visible borders, eliminating side margins (reference image provided).

Solutions Offered:

Multiple CSS code snippets were provided targeting the Broadcast theme’s mobile product slider:

  • Primary approach: Add custom CSS via Online Store > Themes > Customize > Theme Settings > Custom CSS
  • Key CSS modifications:
    • Set .product__slide width to calc(100% - 80px) or 80%
    • Remove default padding/scroll-padding from .product__slides
    • Optional border styling (1px solid #000)
    • Remove existing borders/box-shadows if needed

Current Status:

The discussion remains open. Several users requested the store URL to provide more tailored solutions, but the original poster has not yet responded with this information or confirmed whether the suggested CSS code resolved the issue.

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

Hi @okocha21

You can try to add this code to Custom CSS in Online Store > Themes > Customize > Theme settings and check

@media (max-width: 749px) {
    .index-product .product__images--mobile-slider .product__slide {
        width: calc(100% - 80px);
        margin: 0;
        border: 1px solid #000;
    }
    .index-product .product__images--mobile-slider .product__slides {
        padding-left: 0px
        scroll-padding: 0;
    }
}