Product grid high speed doors | Community
Skip to main content
New Participant
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. 

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

kautuk_sahni
Employee
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
giuseppebaglio
giuseppebaglioAccepted solution
New Participant
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