Currently, you can’t really customized the overlay background at the back of the pop-up when a review is clicked. Hope a feature would be released wherein we can customize the font size and overlay background color on the review pop-up. Thank you!
1 Like
Hi there and welcome to the Community, @Kanri_Admin
Thanks for sharing your idea with us!
I agree that it would be great to have options to adjust the overlay, background and font size of the review text in the review popup. We’ll try to consider this opportunity in the future, especially if more users upvote it
As for now, here is a code for the detailed customization of the review popup:
/*Change background of the image container in popup */
[class*="MediaContainer__Container-sc"] {
background-color: red;
}
/*Change background of the review container in popup */
.es-popup-content-container {
background-color: grey;
}
/*Change font size of the review text in popup */
.es-popup-content-container .es-text-shortener {
font-size: 18px;
}
/*Change popup overlay color */
[class*="Popup__PopupInner-sc"] {
background-color:black;
}
Please add this code to the Custom CSS field on the Style tab of your widget’s settings and let me know if it helped
1 Like