• marioncha5

    (@marioncha5)


    Hi,

    I have an iissue with disable rows for mobile / desktop.
    I used the following code to hide on mobile and it works perfectly :

    Additional CSS in my row (with WPBakery Page Builder 5.7)

    .no-mobile

    CUSTOM CSS in the THEME

    @media only screen and (max-width:768px) {
    .no-mobile {
    display:none
    }

    PROBLEM : I tried to change this code to hide for desktop but it doesn’t work :

    @media only screen and (min-width: 769px) {
    .no-desktop {
    display: none;
    }

    Any help ? ??

    • This topic was modified 5 years ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not a Developing with WordPress topic

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • tomaaszq

    (@tomaaszq)

    There could be so many reasons that you can’t see this change. One of them is that, your browser cached old version. Try incognito mode, or cmd+shift+R via Chrome ??

    vpraveen60

    (@vpraveen60)

    Hi

    Try with below CSS

    @media (min-width:769px) {
    .no-desktop {
    display: none !important;
    }
    }

    Thank you
    Praveen Valmiki

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide row on desktop’ is closed to new replies.