How can I add spacing between the logo and navigation bar on Spark theme?

Hi all, I would like to add some spacing between the logo and the navigation bar on the Spark theme.

I’ve tried to find it in the css file but have had no luck so far. Does anyone know how to achieve this? :slightly_smiling_face:

website: https://trg-natural-pharmaceuticals.myshopify.com/ password: shop123

Thanks so much in advance!

try

.header__links {
    margin-left: 40px;
}

change 40px to what you would want.

Don’t forget to test this on the mobile

@INFRA

Please add the following code at the bottom of your CSS file.

@media (min-width: 60em){
nav.header__links {
    margin-left: 70px;
}
}

Hope this works.

Thanks!

Thanks @dmwwebartisan & @Bunty these both worked great!