[Resolved] Remove / Change the widget position in Mobile

Home Forums Support [Resolved] Remove / Change the widget position in Mobile

Home Forums Support Remove / Change the widget position in Mobile

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2389281
    Krish

    Hello,

    How can i Remove/Change the widget for mobile only? When I adjust, the changes affect the desktop too.

    Thanks

    #2389574
    David
    Staff
    Customer Support

    Hi there,

    when you add a widget it adds HTML to the page, its not device responsive.

    You can use CSS to remove a widget. Which widget do you want to remove ? Can you share a link to where i can see it.

    #2390704
    Krish

    I want to remove the latest posts widget from mobile. Or change the gap between the widget and the comment button on mobile.

    I’ve added a link to one of my posts.

    Thanks

    #2390721
    Fernando
    Customer Support

    Hi Krish,

    Here’s two different codes you can try adding in Appearance > Customize > Additional CSS:

    1. Add spacing:

    @media (max-width: 768px) {
        .inside-right-sidebar {
            margin-top: 50px;
        }
    }

    2. Hide:

    @media (max-width: 768px) {
        .inside-right-sidebar .wp-container-18.wp-block-group {
            display: none;
        }
    }
    #2390733
    Krish

    Thanks

    #2390756
    Fernando
    Customer Support

    You’re welcome Krish!

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