Can't start text from a new line in title

Hi! I’m using Dawn theme. In section “Image banner” I need to make a title that consists of 2-lines title.
I write down text, clicking Enter(return) button and nothing happens like it usually has to be.
I also tried to add
between sentences but it says “Setting ‘heading’ is invalid. Tag ‘
’ is not permitted”
Please answer without changes in code. I’m not coder and never coded. I’m just a regular user. Thank you.

Unfortunately, there isn’t a no-code way to fixing this. Shopify built this block in their theme this way intentionally. The block’s text input type is specialize and called “inline_richtext” - which doesn’t allow
tags or line breaks.

To change this, you have to go into the liquid section in the code and change the type from “inline_richtext” to “text”

It’s a small change and you don’t need to be a developer to make it, but I’d still recommend making a copy of your theme and editing the unpublished copy to make sure it works properly.

Go to Online Store, Find your duplicated theme, select Edit Code. Search for the image-banner.liquid file and using CTRL/CMD+F to find, search for “heading”

You’ll find the block schema around like 367 and will see “type”; “inline_richtext”, - just delete a few characters so it’s just “text”

Save your changes and go back to the Customizer and you’ll see that you can now add
tags to your heading.

Note: If you update your Dawn theme to a newer release, these changes may be overwritten and you’d need to do them again.