Where can i find the product grid for high speed doors in AEM? I want to make some adjustments.
Solved! Go to Solution.
Views
Replies
Total Likes
          
        
To adjust the product grid maybe you'll need to modify the responsive grid system. Here's how to approach it:
.aem-GridColumn:not(.container) {
       padding: 0 8px; /* Default gutter */
   }
   @media (min-width: 768px) {
       .aem-GridColumn:not(.container) {
           padding: 0 16px; /* Larger gutter for desktop */
       }
   }This should ensure consistent spacing across components
          
        
To adjust the product grid maybe you'll need to modify the responsive grid system. Here's how to approach it:
.aem-GridColumn:not(.container) {
       padding: 0 8px; /* Default gutter */
   }
   @media (min-width: 768px) {
       .aem-GridColumn:not(.container) {
           padding: 0 16px; /* Larger gutter for desktop */
       }
   }This should ensure consistent spacing across components
          
        
@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!
Views
Replies
Total Likes
Views
Likes
Replies