Forums › Forums › Bug Reports › Button alignment/responsiveness issue on mobile › Reply To: Button alignment/responsiveness issue on mobile
-
Hi @petefromhome ! Upon checking your page, I noticed that you’re using the largest available button size. The easiest fix would be using a smaller button size. However, if you want to keep your current button size, you may add the following code to your custom CSS:
@media (max-width:630px){
.ub-button-flex-larger{
min-width: initial;
}
}Please let us know how it goes.