Re: Add address to footer - Streamline theme

Solved

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

RySid
Excursionist
23 0 6

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!

Accepted Solution (1)
made4Uo
Shopify Partner
3877 719 1232

This is an accepted solution.

Hi @RySid 

 

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

 

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.

made4Uo_0-1666298056069.png

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free

View solution in original post

Replies 5 (5)

made4Uo
Shopify Partner
3877 719 1232

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
RySid
Excursionist
23 0 6

Hi!

 

Here's my site link: 

made4Uo
Shopify Partner
3877 719 1232

This is an accepted solution.

Hi @RySid 

 

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

 

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.

made4Uo_0-1666298056069.png

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
RySid
Excursionist
23 0 6

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

made4Uo
Shopify Partner
3877 719 1232

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;
}

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free