Hi
I wanted to implement the following CSS change. but somehow it does not work
@media only screen and (max-width: 767px)
.responsive .shop_table .product-quantity {
display: table-cell;
}
it always gets changed back to:
@media only screen and (max-width: 767px)
.responsive .shop_table .product-quantity {
display: none;
}
please advise, thanks!
Hey richardhofer83,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.responsive #top .shop_table .product-quantity {
display: table-cell;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
thank you victora, works fine!