Icon with text section

Topic summary

A store owner needed help adjusting their product page’s icon-with-text section, specifically wanting to:

  • Reduce the gap between icons
  • Reposition the section to align better with product information

Solution provided:
Custom CSS code was shared to control spacing and width:

  • Sets gap to 1rem between icons
  • Limits max-width to 44rem (90% on screens wider than 1200px)
  • Aligns section with cart button width

Implementation:
The code should be added to the theme’s “Custom CSS” section in the customizer.

Outcome:
The solution was successfully implemented and resolved the issue.

Summarized with AI on October 24. AI used: claude-sonnet-4-5-20250929.

currently working on my product page and encountered a problem
i have a few things i want to change
-The gap between each icon
-The location of the whole section inside the product information, so it will be a bit to the right
Store link: Bresh

store password: hugegyat

1 Like

This can go to the Sections “Custom CSS” – this way it will follow the cart button width.

.icon-with-text.icon-with-text--horizontal {
  gap: 1rem;
  max-width: 44rem;
}
@media (min-width: 1200px) {
  .icon-with-text.icon-with-text--horizontal {
    max-width: 90%;
  }
}

where am i supposed to write the code you gave me?

1 Like

Worked great. thank you

1 Like