Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi there,
I've created a blog post on Shopify and inserted a table. On Desktop it looks fine, but on Mobile it doesn't look nice because table width stays at 100% of screen size. Would like to see to scrolling option instead, to fit all the content of the table.
See here:
Here is the link: https://tomorrowgolf.com/blogs/news/are-golf-balls-bad-for-the-environment
Thanks!
Solved! Go to the solution
This is an accepted solution.
Please add this CSS in base.css
@media(max-width: 479px){
.rte table {
overflow: hidden;
overflow-x: scroll;
display: block;
}
}
Thanks,
Ritu
This is an accepted solution.
Please add this CSS in base.css
@media(max-width: 479px){
.rte table {
overflow: hidden;
overflow-x: scroll;
display: block;
}
}
Thanks,
Ritu