Hello there,
need help with resizing table for mobile view its so big as you can see on screenshots or you can just check it out
i really can’t fingure it out been tried 3 hours to fix it but non anyone can write for me the custom css and ive appreciated that tho thanks 
https://luxuryonlineshop.net/products/maange-5-pcs-mini-cosmetic-egg-wet-and-dry-dual-use-foam-large-powder-puff-makeup-tools?
’
Hello @NightOwner 
Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
.product_inner_description > div {
width: 100%;
overflow-x: auto;
}
The tables will be scrollable like this
1 Like
Hello @NightOwner
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your maange-5-pcs-mini-cosmetic-egg-wet-and-dry-dual-use-foam-large-powder-puff-makeup-tools file
-
Paste the below code
@media screen and (max-width:740px){
col {
width: 159px !important;
}
.product_inner_description table {
padding: 8px;
text-align: left;
height: 100%;
width: 328px !important;
font-size: 12px;
}
}
1 Like
hello @ZenoPageBuilder ,
thank you very much appreciated your help 
1 Like
hello @niraj_patel .
thank you very much brother appreciated your help 
Hello @NightOwner
My solution worked then please accepted solution.