How to put a header inside a hero? My store is sorrows.store. I am using theme savor
Hi @sorrows
Could you please send me a proper screenshot of how you want it?
Method 1: Using Theme Editor (No Code)
If you just want a text header inside the hero banner, the Savor theme supports it natively:
-
Go to Shopify Admin → Online Store → Themes.
-
Click Customize on your Savor theme.
-
In the left sidebar, click on your Hero Banner / Slideshow section (it’s usually called “Image banner” or “Hero” in Savor).
-
Look for options such as:
-
Heading / Title
-
Subheading / Description
-
-
Type your desired header text there (e.g., “Discover Elegance in Every Detail”).
-
Adjust alignment (center, left, right), font size, and color under the section’s Typography / Text settings.
-
Save.
This will place your header text directly on top of the hero image.
Method 2: Adding a Custom Header via Custom Liquid (Code)
If you want a more customized header (like a styled <h1> tag) inside the hero:
-
Go to Shopify Admin → Online Store → Themes → Customize → Sections.
-
If the section doesn’t support headings the way you want:
- Go back to Online Store → Themes → … → Edit Code.
-
Open Sections → hero-banner.liquid or image-banner.liquid (Savor may name it slightly differently — check under
sections/). -
Find where the main hero image is rendered. Usually there’s a
<div class="hero__content">. -
Add your custom header above or below the existing text block. For example:
<div class="hero__content">
<h1 class="hero-heading">Welcome to Sorrows Store</h1>
{{ section.settings.text }}
</div>
- Save the file.
Optional Styling (in theme.css)
To adjust font size or color, open Assets → base.css or theme.css and add:
.hero-heading {
font-size: 3rem; /* adjust size */
color: #ffffff; /* white text for contrast */
text-align: center; /* center text */
font-weight: 700;
text-shadow: 0 2px 6px rgba(0,0,0,0.3); /* optional shadow for visibility */
}
Save and refresh your store.
Tips
-
Always keep the main page header as
<h1>for SEO — usually your hero headline should be the<h1>. -
If you’re not comfortable editing Liquid, Method 1 is safer.
-
Before editing code, always duplicate your theme (Online Store → Themes → Actions → Duplicate) to avoid breaking your live store.
Would you like me to show you exactly which section file name to edit if you share a screenshot of your theme’s Sections folder?
Hi @sorrows,
Please go to Customize > Sections > Header > Home page > Transparent background.
You just need to enable the option, it will display fine
Hi @sorrows ,
I noticed you added the slideshow-slide text section to the header. Could you share a bit more about what you’d like it to look like or how you’d like it to work? I’ll be glad to guide you through it.
Hey @sorrows ,
I can see the header is already on the Hero Section. Is there any other modifications you required for that then let me know.
Thanks
