Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #843757

    Why isn’t the orders menu, or any My Account table responsive:

    https://prnt.sc/gcpsa6

    Suggestions for a fix?

    Using enfold shop theme.

    #845189

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.