Hi, I am very happy with your theme, except for one issue on mobile devices: On some pages of my site, I have manually created tables with 2-3 columns. When viewing these on mobile devices, they are cut off (which is understandable), BUT I cannot scroll to the right to view the rest of this table. Is there any solution to this problem (except not using tables)? thanks!
Hi schloeskeCS!
Can you please give us a link to page with the table element? Maybe, we can resize the size of the table on mobile view.
Cheers!
Ismael
Hey!
Try adding this code to the Quick CSS:
#top {
overflow-x: visible !important;
}
That will allow scroll on mobile.
Cheers!
Josue
Thanks, that worked partially. However, for tables that are embedded in an Accordion/Toggle, they are still cut off.
Hey!
Try adding this code to the Quick CSS:
.single_toggle, .toggle_content {
overflow: visible !important;
}
Cheers!
Josue
thanks, that did the trick :-)