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 #1719146
Logo Header Padding Top & Bottom
Closed

Comments

  • DamienLB started the conversation

    Hi,

    I'd like to set a different value for Logo Header Padding Top & Bottom depending on whether you're on a computer or your mobile.

    The default setting is 40 for the desktop version of the website and I'd like to keep it that way but I'd like to set it to 10 for the mobile version.

    What custom CSS code should I add to the theme?

    Take care,

    Damien

  •  2,699
    PenciDesign replied

    Hi,

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

    @media only screen and (max-width: 768px){
    #header .inner-header .container{ padding: 10px 0; }
    }
    

    Best Regards,

    PenciDesign

  • DamienLB replied

    Thank you very much for your answer!