Line spacing, more general sizing options needed!

particularly on mobile, more sizing options are critical! pleeeeease!

2 Likes

Hi there, @Next_Level_Music :wave:

Thank you so much for the feedback!

Could you please describe what other sizing settings (except for line spacing) you’d like to see in the widget?

As for the mobile line spacing, you can adjust it using this code in the Custom CSS field on the Style tab of your widget’s settings:

@media (max-width: 500px) {
.es-review-content-text {
    line-height: 24px; 
}
}
1 Like

Thanks for responding!

I’d love to be able to scale the review in its entirety if that’s possible.

Or control the size of every part of it individually.

2 Likes

You can change the size of the rating and review text in the Review section on the Style tab of your widget’s settings:


As for the other elements (author name, date, source icon, read more button), you can change their size using this CSS code :slightly_smiling_face:

.es-review-author-name {
  font-size: 20px;
}

.es-review-info-date {
  font-size: 15px;
}
.es-review-info-source-container {
  margin-left: 10px;
  scale: 1.2;
}

.es-review-content-control {
  font-size: 13px;
}
1 Like

thanks for these - it’s starting to help!

is there any way to reduce the size of each review as a total block as it appears on the widget?
or reduce the amount of space between reviews, eg. the red areas on my screenshot

2 Likes

This code will help you reduce the size of the review block:

.es-review-container {
  scale: 0.9;
}

Try it out and let me know if you like the result :slightly_smiling_face:

1 Like

thank you for your help!

I don’t notice that making any difference strangely!

1 Like

ah, wait! that’s helping, thank you!

1 Like

how about reducing these areas in size? anything we can do?

2 Likes

This CSS code will help you do this:

.es-review-background-container {
  padding-top: 24px;
  padding-bottom: 24px;
}

.es-review-author-block-container {
  margin-bottom: 16px;
}

To control the spacing between the review blocks, please use the Item spacing setting:

awesome, thank you!

the last issue is this space is huge, 0px isn’t small enough. can i enter a negative value, or is there something else I can do?

1 Like

This happens because of this code:

.es-review-container {
  scale: 0.9;
}

Just remove it from the Custom CSS field and the Item Spacing option will work correctly (change spacing and review cards) :slightly_smiling_face: