• I’d like the have a header heigh like in AirBnb https://www.airbnb.it/ , of course with the logo in the middle, I have used so many css that now I dont know where to put the hands. Maybe it’s just matter of putting more padding on top and on bottom of the logo?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

    Try the following:

    First, add padding to .site-branding and display it as flex, so that you can center the logo easily:

    .site-branding {
    padding-top:1rem;
    padding-bottom:1rem;
    display:flex;
    }

    Then, center the logo

    .custom-logo-link {
    margin:auto;
    }

    That should work

    Cheers!

Viewing 1 replies (of 1 total)
  • The topic ‘making the header higher’ is closed to new replies.