Make the colums from 2 to 3 or more

Hi there, @Jhon_Kwarri :wave:

Please use this code in the Custom CSS field on the Appearance tab of your widget’s settings and let me know if it helped:

.es-layout-grid-container {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.es-column-grid-container {
  grid-column: unset !important;
  margin: 0 !important;
}

The number of items per row is set in the 2nd line of the code:


We also agree that it would be great to have this option as a setting, and I’ve added this idea to the Wishlist on your behalf :slightly_smiling_face: - Option to set the number of tables per row (Grid layout)

2 Likes