How can I make a heading overlap product images in a feature section?

I’d love to achieve this sort of look:

Here’s my code so far:

div#shopify-section-1559585995085 .section-header__title {
 	text-align: left!important;
    margin-bottom: -80px!important; 
}

How it looks:

The website is: https://mooncat-ui.myshopify.com/ and the password is “pearler”

Thanks heaps!

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.scss.css and paste this at the bottom of the file:
div#shopify-section-1559585995085 .section-header__title {
margin: 0 !important;
}

div#shopify-section-1559585995085 header.section-header {
margin-bottom: 0;
}

hello @pearlerwork

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

div#shopify-section-1559585995085 .section-header__title {
    margin-bottom: -40px !important;
}

@pearlerwork

Please Go to Online Store → Themes → Edit code → Assets → theme.scss.liquid and paste this code at the end of this file.

.section-header__title  {
    z-index: 10;
    position: absolute;
}
1 Like

@pearlerwork Thank you for accepting my answer as a solution.

1 Like