Hi! I need to add some company registration information (address, company registration number) at the bottom of my page, similarly to in the picture below. How do I add that?
Inside theme.liquid find {% section footer.liquid %} and write what you want to add underneath him.
If you don’t know the code very well, you can contact me and I can help you with that!
I don’t know coding well at all so would be very grateful if you could help me!
Send me a private message with your shop URL and invite my email as your shop co-author.
https://nevy.co.kr/ and the password is: nevytesting123
Could you let me know how to insert the code and I can try it out?
It is to find the theme.liquid file and in it find the code {% section ‘footer’ %}. Then insert the code you want to add to the bottom below him.
If I want to add text like this, what code do I need to enter?
COMPANY :
CEO :
BUSINESS LICENSE :
PERMIT NUMBER :
ADDRESS :
EMAIL : i[email removed]
COMPANY :
CEO :
BUSINESS LICENSE :
PERMIT NUMBER :
ADDRESS :
EMAIL : info@nevy.co.kr
Because this is a simple structure, you don’t set the style for him. What style do you need to set?
I would like it to be similar to the first picture I sent, just really small at the bottom. I would also like the background and text colour to be the same as the footer. Thank you!!
Hello @mayanevy ,
Greetings from SynapseIndia, and we are glad to help you today.
First go to your store Admin Panel / Backend and then In the left sidebar menu panel , go to Sales Channels > Online Store > Themes & then on the right side click the “customize” button of the current theme . Then in footer section you may customize the content of the store footer.
Happy to answer any other queries you may have.
If you find my solution helpful, please do hit Like and Mark as Solution
Best Regards,
Animesh Sharma
SynapseIndia® - Shopify (2.0 and Plus) Experts
https://shopify.synapseindia.com
I.T. Outsourcing @ Peace of Mind
Develop and manage Ecommerce stores
- Get connected: Services | Blog | Portfolio | Help Center
Hello. Yes I tried that But the text gets too big when I do this. I’d like it to be really small at the bottom of the page.
HTML:
COMPANY :
|
CEO :
|
BUSINESS LICENSE :
|
PERMIT NUMBER :
|
ADDRESS :
|
EMAIL : info@nevy.co.kr
CSS:
.footerInfo{
display:flex;
flex-wrap:wrap;
barkground-color:#eee;
}
.footerInfo>div:nth-of-type(even){
margin:0 10px;
}
.footerInfo>div{
font-size:14px;
}
try this
Thank you! Do I just add both of these in the theme liquid?
The css you put in section-footer.css is fine.
Thank you that seems to work! Is there a way to change the background colour?
Sorry, I misspelled a word.
background-color is the property that modifies the background colour here, you can change the colour code behind it to customise the background colour
.footerInfo{
display:flex;
flex-wrap:wrap;
background-color:#eee;
}



