How can I add a line break in a Debut theme headline?

Hi everyone,

I was wondering how to add a line break to a headline that’s over a hero image in the Debut theme. Seems like it should be an easy thing to do, but I’m new to this platform.

Thanks,

Risa

Hello There,

Please share your store URL and Screenshot.
So that I will check and let you know the exact solution here.

Hello Risa,

in the Debut theme the relevant code can be found in sections/hero.liquid

In this file there are two places which contain: {{ section.settings.title | escape }} . This is the code that takes the title entered in the shopify admin and puts it onto the page.

The two easiest routes to enable Line breaks here would be to

a) Removing the escape filter. By changing this part to {{ section.settings.title }}, titles such as “First Line
Second Line” could be used in the admin and the line break would work.

b) Replacing this part with the appropriate HTML that should be displayed on the page.

Hope this helps!

1 Like

That Worked! Thank you so much for your help!

How does that work for narrative theme?