How can I add multi-line text to Brooklyn theme footer?

Hi Everyone.

I’m looking to add some text into my footer for my website. I’m using the Brooklyn theme and I’ve been searching online for over an hour trying to figure this out with no real progress.
I need to add some text such as my business address, phone number, email and business registration number. I’ve found another post that had some code to add a line of text, which worked, but I need to be able to split my text into different lines, if that makes sense. I’ve tried messing around with some code but it just appears to be beyond my knowledge.

This is how I would like it to look:
Luxury Pet Company
address line
address line
phone number
email
business number

This is the line of code I entered in the footer.liquid on line 257, but the text just runs in one continuous line.

© {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url }}

{{ "TEXT HERE" }}

Can anyone help me?
I’m also kind of in a hurry. I’ve been given a deadline to add this information to our page.

Thank you so much for any help.

It’s just basic HTML. The simplest way of doing it is adding a
tag after every line.


© {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url }}
 
  123 Main Street

  Los Angeles, MN 910210

  555-555-5555

Use tag for credit card images. Or, if you have a font library, use a font icon.

3 Likes

Great! I was adding
codes but it was showing it weird, I guess I just did something wrong. This worked perfectly. Much appreciated.

Hello, I’m trying to do something similar with my footer but I can’t seem to figure it out. The code you have seems simple enough but I’m not sure where I am suppose to put it. Any help or suggestions would be greatly appreciated.