Dawn Theme - Text Under Newsletter Headline in the Footer

Hi!

As mentioned in the title I would like to add text under newsletter headline in the footer. I attach screen of how I’d like it to look.

Hey @AdrianS05

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

@AdrianS05 - by default you may not have an option to add text under newsletter, in that case we will need to use code editing for it, are you familiar with the coding?

Hi @AdrianS05

You can try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.footer-block__newsletter:after {
    content: "Place your Text here.";
    padding-top: 20px;
    
}

form#ContactFooter {margin-bottom: 30px;}

i hope it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi! I would like to have this text beetween newsletter and email form, is it possible?

Yes, like this.

If it is then it would be on same Instruction.

form#ContactFooter:Before {
    content: "place your text here";
    margin-bottom: 20px;
}

And Save.

I hope it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you very much! Everything works great.

Welcome, Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!