Fixed reviews height on mobile view

I’d like to make sure that card display height in mobile view stays consistent for all the reviews like in desktop view.

2 Likes

Greetings, @user3485 and welcome aboard :waving_hand:

Thank you for the feedback!

We agree that it would be great to have this option in the settings, and we’ll try to consider this opportunity in the future :slightly_smiling_face:

As for now, you can achieve this using the code below in the Custom CSS field on the Style tab of your widget’s settings:

@media (max-width: 500px) {
  .swiper-slide .es-review-container {
    min-height: 300px !important;
  }
  
  .es-review-content-container {
    flex-grow: 1;
  }
  
  .es-reviews-images-container {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
  }