• Hello everyone,

    Is there a way to make the header a little narrower? If you go to the homepage, then the header with the name appears so wide.

    Best regards

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there,
    try this

    
    header .site-logo {
        background: none;
        width: 400px;
        margin: auto;
    }
    

    in your custom CSS box under Appearance->Customize->Additional CSS.

    Thread Starter aydan1

    (@aydan1)

    Thank you Fotis! It worked 🙂
    Can you give me the CSS code for the mobile version so I can change it too?

    Many Thanks!

    Hi there,
    Glad I could help. Add this

    
    @media(max-width:768px){
    
    header .site-logo {
        background: none;
        width: 200px;
        margin: auto;
    }
    
    }
    

    for the mobile

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Header Size’ is closed to new replies.