Change design - Product bundles section

Topic summary

A user seeks to remove numerical indicators from product bundle images on their Shopify store.

Proposed Solutions:

Three community members offered CSS-based fixes:

  • Option 1: Add custom CSS code to the theme.liquid file, placed above the </body> tag
  • Option 2: Insert CSS targeting .product-bundles__item-index { display: none; } into the Custom CSS section
  • Option 3: Similar approach using theme.liquid with CSS hiding #m-product-bundles-template item indices

All solutions involve adding display: none styling to hide the bundle item index numbers while preserving the product images.

Status: Multiple working solutions provided; awaiting user confirmation on which approach was implemented successfully.

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

Hi @lunalucenteskin

You can remove those numbers by adding this code to Custom CSS of that section.

.product-bundles__item-index { display: none; }