One option you have to make the table fit better on mobile is to hide the Venue column on smaller screens, as you include it in the event title is shouldn’t cause any issues.
You can do that using some CSS:
@media only screen and (max-width: 600px) {
#ee_filter_table th:nth-of-type(2),
#ee_filter_table td:nth-of-type(2) {
display: none;
}
}
You can add that to Appearance -> Customize -> Additional CSS.
Viewing 1 reply thread
The support post ‘Sizing Issues / Responsive Table Listing’ 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.