Hi, I’m wondering what should be included in the code to make a booking page or a table scrollable sideways in the iphone?
Hey DesignLena,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:
.flex_column.el_before_av_table {
overflow: auto;
}
Best regards,
Mike
Hi,
For that page try this css:
#top.page-id-38 .flex_column.avia-builder-el-2 {
overflow: auto;
}
but on that page the color section that the table is in is hidden on mobile.
If you have multiple tables on multiple pages then I recommend add a custom class to the column that the table is in, if you use the custom class “scroll-table” then you could use this css instead:
#top .scroll-table {
overflow: auto;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
