The best customise design process for adding text here:

Hi Everyone,

Below shows what my homepage currently looks like. I have an image banner, which includes the Title, Subheading and button. However, I need to include one more line of text (shown by the red arrow below) - and I am not sure what the best process for this is?

Thank you so much!

1 Like

Add a Text/Rich text block inside your hero section in Themes → Customize, most themes allow this right under the main heading. If yours doesn’t, drop a simple <p> in the hero section’s Liquid file and style it with a small top margin.

Hi @marycrichton123

Step 1: Go to

Online Store → Themes → Edit code

Step 2: Open your banner’s section file

It’s usually one of these:

  • sections/image-banner.liquid
  • sections/hero.liquid
  • sections/banner.liquid

Step 3: Add a new field in the schema

Inside the {% schema %} area, add this:

{
  "type": "text",
  "id": "extra_text",
  "label": "Extra text line"
}

This will allow you to edit the line from the theme customizer.

Step 4: Output the new text in the banner

Find where the title, subheading, and button are rendered.
Below them, add:

{% if section.settings.extra_text != blank %}
  <p class="banner-extra-text">
    {{ section.settings.extra_text }}
  </p>
{% endif %}

Add to your CSS file:

.banner-extra-text {
  font-size: 18px;
  margin-top: 10px;
  color: #fff; /* change the color if needed */
}

Best regards,
Devcoder :laptop:

How to add one more line of text in a Shopify banner

:white_check_mark:Option 1 — Your theme lets you add “Custom Text”

  1. Go to Online Store → Customize

  2. Click your Banner / Slideshow / Image Banner section

  3. Look for something like “Text”, “Custom Text”, or “Rich Text”

  4. Add your new line there

Done. :check_mark:

:white_check_mark: Option 2 — Your theme only allows 1 heading + 1 subheading

You can add the extra line using a line break:

  1. In the Subheading box, type: Saturday 16th – Sunday 17th MayYour new line here
    This will create a second line without touching any code.

Kindly share your website link so I’ll guide you clearly.

If you’re open to editing theme code, then remove this line.
This will allow you to add several “Text” blocks to this section – more lines of text.