Home Forums WoodMart support forum Tables in responsive pages Reply To: Tables in responsive pages

#582971

Luke Nielsen
Keymaster

Hello,

Define the code below in Theme Settings -> Custom CSS -> Global custom CSS:

@media screen and (max-width: 990px) {
    .woocommerce-Tabs-panel--description table tbody tr td {
        width: 100%;
        display: block;
        text-align: center;
        border-bottom: none;
        
        border: 1px solid lightgray;
    }
    
    .woocommerce-Tabs-panel--description table tbody tr td a {
        width: 100%;
    }
    
    
}

Clear the cache and recheck your issue.

Kind Regards