We had a customer request “…sale banner on bottom (on mobile) could use a larger x to close its kind of hard to hit”. We agree with his request that is could be a little larger.
Thank you for sharing this suggestion, @user39484!
While there is no option to change the close button’s size in the settings, here’s a CSS code that will help you. Just add it to the Custom CSS field on your widget’s Settings page:
.es-element-close-button {
width: 40px !important;
height: 40px !important;
}
.es-element-close-button-icon,
.es-element-close-button-icon svg {
width: 20px !important;
height: 20px !important;
}
Let me know if it helped!