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 #2963165
Mobile layout
Closed

Comments

  • Jan started the conversation

    If I dont want the sidebars on mobile but I want to keep them for Desktop, how can i do that ?

  •  2,492
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    @media only screen and (max-width: 767px) {
        .penci-sidebar-content {
            display: none;
        }
    }

    Regards,
    PenciDesign.



  • Jan replied

    this works for smartphone. How Can I apply this for Ipad too ??

  •  2,492
    PenciDesign replied

    Hi,

    Change this code to:

    @media only screen and (max-width: 960px) {
        .penci-sidebar-content {
            display: none;
        }
    }
    

    Regards,
    PenciDesign.