Site logo

[Support request] Disable right sidebar widget on phones and tablets

Home Forums Support [Support request] Disable right sidebar widget on phones and tablets

Home Forums Support Disable right sidebar widget on phones and tablets

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2426943
    francesco

    Hello everyone, I can’t disable the side widgets on phone and tablet, actually on phone I can using this ccs

    @media(max-width: 768px) {
        #right-sidebar {
            display: none;
        }
    }

    ,

    but on tablet it doesn’t work.
    advice?

    #2427239
    David
    Staff
    Customer Support

    Hi there, try adding this CSS:

    
    @media(max-width: 1024px) {
        #right-sidebar {
            display: none;
        }
        #content.site-content .content-area {
            width: 100%;
        }
    }
    #2428612
    francesco

    hi david, do I add it to this

    @media(max-width: 768px) {
        #right-sidebar {
            display: none;
        }
    }

    or replace it?

    #2428846
    David
    Staff
    Customer Support

    Replace it 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.