How can I adjust text placement in the Refresh theme banner?

Hi! I am using the refresh theme and while designing my subheading for my banner/slideshow, I was trying to write this:

Auditory Enjoyment,

Simplified

However, when I wrote it out, it came out as

Auditory Enjoyment Simplified

Now the word “Simplified” is covering part of my picture I added, that is why I want what I wrote in the first example. Is there an easy way to go about this? I am not good with coding but if this means I need to code something then please explain in very, very, very good detail. Thanks!

1 Like

@Jace2

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

hello, Jace2, good evening.

Go to online store > themes > actions > edit code > slideshow.liquid file, inside the sections folder. Look for:

{
          "type": "text",
          "id": "subheading",
          "default": "Tell your brand's story through images",
          "label": "t:sections.slideshow.blocks.slide.settings.subheading.label"
        },

replace it with

{
          "type": "richtext",
          "id": "subheading",
          "default": "

Tell your brand's story through images

",
          "label": "t:sections.slideshow.blocks.slide.settings.subheading.label"
        },

and also find:

{{ block.settings.subheading | escape }}

and replace it with:

{{ block.settings.subheading }}