how to change the shape of the button and increase the size of the button both desktop and mobile? and the font size as well?
1 Like
@Priya_Anand This code will help you change the button height, width and border radius:
.es-action-button {
height: 100px!important;
width: 350px;
border-radius: 0px!important;
}
Please try it out and let me know if it worked for you
banner buttons work fine on desktop version but on mobile it looks very small and thin - it doesn’t scale and the code you shared is not working
1 Like
Yep, this code works for desktop and for mobile (except for the width changing).
To reduce the scale of the button on mobile only, please use this CSS code
@media (max-width: 500px) {
.es-action-button {
scale :0.8;
}
}
1 Like