Why isn’t the orders menu, or any My Account table responsive:
Suggestions for a fix?
Using enfold shop theme.
Hey mparr,
Thank you for using Enfold.
We can enable the scrollbar so that users can scroll through the “out-of-view” content.
@media only screen and (max-width: 480px) {
.woocommerce-MyAccount-content {
overflow-x: scroll;
}
}
You can also decrease the padding of the columns or the font size.
@media only screen and (max-width: 480px) {
div table.shop_table td {
padding: 6px 5px;
vertical-align: middle;
}
}
Best regards,
Ismael