How to remove the space between the header and image banner

How do I remove this space between my header and image banner? This also happens to the other pages.

https://bagsinthecitymanila.com/

1 Like

Hi @tinee

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
div#shopify-section-header {
    margin-bottom: 0 !important;
}

Here is the result:

I hope this helps

Best,

Daisy

1 Like

Hi @tinee

Please go to your Online Store > Themes > Customize > Theme settings > Custom CSS, add this code

.section-header {
    margin-bottom: 0 !important;
}
1 Like