[Resolved] how can hidden Widget of right sidebar in Mobile

Home Forums Support [Resolved] how can hidden Widget of right sidebar in Mobile

Home Forums Support how can hidden Widget of right sidebar in Mobile

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #621191
    Immi

    Hello, Sir

    i am Using one widgets in right sidebar. but I want it only for Desktop.,when i switch on mobile device right sidebar widget showing above footer. how Can I hidden widget there.
    I tried with this CSS code Below but its not working for me


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

    #621293
    Leo
    Staff
    Customer Support

    Hi there,

    Try this instead:

    @media (max-width: 768px) {
        .sidebar .widget {
            display: none;
        }
    }
    #621298
    Immi

    i have found this support topic this is also not working

    #621300
    Leo
    Staff
    Customer Support

    I’m not seeing the CSS being added.

    #621307
    Immi

    please have a look
    **

    #621313
    Leo
    Staff
    Customer Support

    You are missing a closing bracket } at line #2.

    #621321
    Immi

    please Can You Provide me with proper CSS

    #621323
    Leo
    Staff
    Customer Support

    My CSS is correct.

    The problem is in your existing CSS. It’s missing a closing bracket } in line #2 as I can see in your screenshot above and it’s stopping the CSS below that line from being executed.

    You can always check here: https://jigsaw.w3.org/css-validator/

    #621339
    Immi

    Thank You very much for the very fast support. i appreciate your help
    great theme and best support team. 😊

    #621342
    Leo
    Staff
    Customer Support

    No problem!

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