Hi
How do I make the below table responsive on my shopify site?
pssword: Thaila
Hi
How do I make the below table responsive on my shopify site?
pssword: Thaila
Hi @Melcky
Use this css
@media screen and (max-width: 767px){
.rte table {
overflow-x: auto;
display: block;
}
.rte table tbody {
width: 600px !important;
max-width: 600px !important;
display: table;
}
}
for mobile it will add scroll in table, But table will look nice.
Thanks, @Dbuglabpvtltd .
Could you guide me on where this should be inserted?