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!
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!
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:
Hi @RySid
Thank you. Your lucky. The way your theme is written allows me to use the CSS trick
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?
Yes. Of course, but this is not clickable. Please follow the instructions below
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;
}