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 #1583837
Disable Header
Closed

Comments

  • Heisenberg_hb started the conversation

    Hey how can i disable the header on mobile nav?

  •  2,699
    PenciDesign replied

    Hi,

    Can you tell me what do you want to hide on mobile nav? A screenshot for this please.


    Best Regards,

    PenciDesign

  • Heisenberg_hb replied

    I want to remove this area

  •  2,699
    PenciDesign replied

    Hi,

    This area caused by your custom css. I see you have this code:

    header .inner-header .container { width: 1903px; }

    Please change it to:

    @media screen and (min-width: 1170px){
    header .inner-header .container { width: 100%; }
    }

    And on your mobile - it will display the logo there.


    If you still want to remove that area on mobile, please add more this code to Customize > Custom CSS:

    @media screen and (max-width: 769px){
    #header .inner-header { display: none; }
    }


    Best Regards,

    PenciDesign