Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2174443
Disable Sidebar Widgets on Mobile
Closed

Comments

  • laurenhabermehl started the conversation

    Hi there,

    I'd like to disable my sidebar widgets on mobile devices. I'd like to have it disabled for the tablet vertical breakpoint and also the breakpoints for phones vertical and horizontal. Can this be accomplished with some custom css?

    Thanks!

    Lauren


  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to do that:

    @media only screen and (max-width: 1169px) and (min-width: 961px){
    .penci-single-style-10 .penci-single-s10-content, .container.penci_sidebar #main{ width: 100%; padding-right: 0; float: none; }
    .penci-sidebar-content{ display: none; }
    }
    @media only screen and (max-width: 767px) {
    .penci-sidebar-content{ display: none; }
    }
    

    Best Regards,

    PenciDesign

  • laurenhabermehl replied

    Wonderful! That did the trick. Thanks so much for the quick help.