Is it possible to have Responsive Visibility in in wraps and items?

In the options for sections in the page builder, you are able to hide sections on tablets and mobile.  Is this possible to do also do this for wraps and items?  If so what would I have to do to hide an Item or a wrap so I do not see it on mobile "hide for Mobile | -768"

would that be a code to put in custom class or custom id?

Comments

  • What you can do is set a custom class for all items or wraps that you want to hide and add custom css in theme options>custom css&js>css.

    For example add the class ".hideonmobile" and add custom css llike:
    @media (max-width:767px) {
    .hideonmobile {
    display:none !important;
    }
    }
Sign In or Register to comment.