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 #1874404
Mobile menu logo width and social buttons toggle
Closed

Comments

  • kaystie started the conversation

    Hi!

    How do I control mobile menu width?

    How can I get rid of social media buttons there?

  •  2,699
    PenciDesign replied

    Hi,

    Please add more this code to Customize > Custom CSS to change it:

    @media only screen and (max-width: 479px){
    #sidebar-nav {
        width: 300px;
        transform: translateX(-300px);
        -webkit-transform: translateX(-300px);
        -moz-transform: translateX(-300px);
    }
    .open-sidebar-nav #sidebar-nav,
    .open-sidebar-nav #close-sidebar-nav {
        left: 300px;
    }
    }
    

    Change all values 300 on the above code to any value as you want.

    To hide social media icons there, please check option for it via Customize > Logo and Header Options > Disable Social Icons on Vertical Mobile Nav


    Best Regards,

    PenciDesign

  • kaystie replied

    Thank you. How do I resize only logo width within mobile menu?

  •  2,699
    PenciDesign replied

    Hi,

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

    #sidebar-nav-logo{ padding-left: 0; padding-right: 0; }
    #sidebar-nav-logo > a{ display: inline-block; max-width: 180px; }
    

    Change value 180 to smaller values as you want.


    Best Regards,

    PenciDesign

  • kaystie replied

    Thanks, solved!