New Topic

Reply To: Dynamic Tables for Mobile and Desktop

Home › Forum › Customization › Dynamic Tables for Mobile and Desktop › Reply To: Dynamic Tables for Mobile and Desktop

#2283

StartupWP
Keymaster

Give this a try:

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  width: 100%;
}
.woocommerce ul.products li.product a img {
  max-height: 150px;
  width: auto;
}
.woocommerce ul.products li.product::before, .woocommerce-page ul.products li.before {
  content: "";
}
@media all and (max-width: 600px) {
  .product-boxes {
    width: 100%;
  }
}