How can I adjust or change my mobile header logo?

Hi, i’m either trying to change my mobile logo alltogether or remove some spacing at the top. Can someone take a look at my shop?

password : lavishprintshop

If you can figure it out please share some code I could use

thank you so much.

.header {
padding-top: 10px;
padding-bottom: 6px;

}
you need to change “.header” class to this.
Do not add this under media queries(in the CSS code where it starts with @media).

Hello @kirstenlc5 :waving_hand:

In Shopify Admin, you can go to Themes, Edit code, open file base.css and add this code snippet at the bottom

@media (max-width: 600px) {
.header {
    padding-top: 12px !important;
} 
}

The result

Hope that helps!