Huge space gap

There is a huge space gap between my header image and the first line of text on this page: The Creative Sandbox – Barb Toland Art

How do I get rid of it? (I’m using the Minimal theme)

Thank you.

Hi @Barb_Toland

Do you want to remove this gap?

Go to Theme Settings, expand “Custom CSS” and paste this code:

header.site-header {
  padding: 0.5rem 0 0 0;
}

Before-> After

And, have you tried the code you suggested yourself?

Hi, @Barb_Toland
Can you take a screenshot to describe your requirements? So that I can check it.

If you are referring to the space at the top of your image, it is caused by the white space present in your image.

Hi @Barb_Toland,

1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

header.site-header {
    padding-bottom: 0px !important;
}

Works perfectly, thank you so much!!!