How can you hide the description of the product category on mobile devices?
The text is very long and the widget filters appear below the text.
Regards.
Hey brunet77,
Please provide a link to the site/page in question so we can look into this issue further.
Best regards,
Jordan Shannon
Hi,
Add this to quick css:
@media only screen and (min-width: 767px) {
.product_meta{
display:none!important;
}}
Best regards,
Jordan Shannon
Hi Jordan tnks, but not run.
I have modifid your code and it work
1. i have change min.width: by max-width
2 change .product_meta by term.description
@media only screen and (max-width: 767px) {
.term-description {
display: none !important;
}}
Its correct?
regards.
Hi,
It’s formatted correctly, but does is work when you put it in? It may still need to be .product_meta.
Best regards,
Jordan Shannon