Hello
I have a text widget on my single product pages (in sidebar). I want to show this on desktop only and hide it on all mobile devices. Is there quick CSS for this?
Link in private content.
Hi,
Add this to quick css:
@media only screen and (max-width: 767px) {
.sidebar.sidebar_sidebar_right.smartphones_sidebar_active{
display:none!important;
}}
Best regards,
Jordan Shannon