How can I add my company address to the footer in Streamline theme?

Hi!

I’m looking to add my company address to the footer of my shopify store (streamline theme) and do not see the ability to add it when customizing the store.

I can’t seem to find any solution to this!

1 Like

Hi @RySid ,

How comfortable are you with coding? This will require to edit the html. Do you mind sharing your website? Not all developers have access to paid theme. Thank you

Hi!

Here’s my site link:

1 Like

Hi @RySid

Thank you. Your lucky. The way your theme is written allows me to use the CSS trick :blush:

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the theme.css
  3. Paste the code below at the very bottom of the file.

NOTE: Please change the 12345 Street, Garderna, CA to the address you want**.** Make sure to keep the quotation marks

#shopify-section-footer > footer > div.page-width > div:nth-child(3):after {
    content: "12345 Street, Garderna, CA";
}

The code will result to this.

Great thank you! is there also a way to add a phone number under it possibly?

1 Like

Yes. Of course, but this is not clickable. Please follow the instructions below

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the theme.css
  3. Paste the code below at the very bottom of the file.

NOTE: Change the Tel: 123-456-7890

#shopify-section-footer > footer > div.page-width > div:nth-child(4) {
    position: relative;
    margin-top: 30px;
}

#shopify-section-footer > footer > div.page-width > div:nth-child(4):before {
    content: "Tel: 123-456-7890";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: -30px;
    color: black;
    left: 0;
}