The theme is setting the width of the select box to 320px wide – http://take.ms/j9rpl
On smaller screens it stays that size.
You can either change that select box width to auto for all screensizes:
.ticket-selector-tbl-qty-slct {
width: auto;
}
Or use a media query to set it only for small screens:
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2) {
.ticket-selector-tbl-qty-slct {
width: auto;
}
}
The support post ‘Alignment issues on mobile devices’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.