Product grid high speed doors | Community
Skip to main content
March 20, 2025
Solved

Product grid high speed doors

  • March 20, 2025
  • 2 replies
  • 326 views

Where can i find the product grid for high speed doors in AEM? I want to make some adjustments. 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by giuseppebaglio

To adjust the product grid maybe you'll need to modify the responsive grid system. Here's how to approach it:

  • Customize Grid Breakpoints: Front-end developers can modify breakpoints (e.g., mobile/desktop widths) by editing the grid.less file. This allows alignment with UX-defined layouts
  • Adjust Gutter Spacing by adding padding to grid columns using CSS. For example:
.aem-GridColumn:not(.container) { padding: 0 8px; /* Default gutter */ } @590883 (min-width: 768px) { .aem-GridColumn:not(.container) { padding: 0 16px; /* Larger gutter for desktop */ } }

This should ensure consistent spacing across components

  • AEM’s grid uses fluid layouts (percentages) for responsiveness. Ensure templates and components are configured to adapt to screen sizes: AEM Responsive Grid System
 

2 replies

giuseppebaglio
giuseppebaglioAccepted solution
Level 10
March 20, 2025

To adjust the product grid maybe you'll need to modify the responsive grid system. Here's how to approach it:

  • Customize Grid Breakpoints: Front-end developers can modify breakpoints (e.g., mobile/desktop widths) by editing the grid.less file. This allows alignment with UX-defined layouts
  • Adjust Gutter Spacing by adding padding to grid columns using CSS. For example:
.aem-GridColumn:not(.container) { padding: 0 8px; /* Default gutter */ } @590883 (min-width: 768px) { .aem-GridColumn:not(.container) { padding: 0 16px; /* Larger gutter for desktop */ } }

This should ensure consistent spacing across components

  • AEM’s grid uses fluid layouts (percentages) for responsiveness. Ensure templates and components are configured to adapt to screen sizes: AEM Responsive Grid System
 
kautuk_sahni
Community Manager
Community Manager
April 1, 2025

@bartgr1 Did you find the suggestion helpful? Please let us know if you need more information. If a response worked, kindly mark it as correct for posterity; alternatively, if you found a solution yourself, we’d appreciate it if you could share it with the community. Thank you!

Kautuk Sahni