Simplify footer for a streamlined look

Simplify footer for a streamlined look

Jenny100
Visitor
2 0 1

my footer will be extremely simple, it will only consist of the following: (centered)

 

                                           

                                                2025 My Store Terms of Service

 

 

where Privacy Policy, Refund Policy, Shipping Policy-these will all go under Terms of Service.  Is there a simple way to achieve this or something close to this?

 

Replies 3 (3)

namphan
Shopify Partner
2690 349 397

Hi @Jenny100,

Please send the website link, I will check it for you

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com

mageplaza-cs
Shopify Partner
511 42 83

Hi @Jenny100 

I am from Mageplaza - Shopify solution expert.

 

If you want to create a simple and quick footer, try the following method:

Go to Themes -> Customize, then create a Custom Liquid section as shown in the image below:

2025-04-24_10-45.png

Liquid code: 

<footer>
    <div class="footer-container">
        <div>© 2025 My Store</div>
        <div class="footer-links">
            <div class="footer-link">
                <a href="/link1">link1</a>
            </div>
            <div class="footer-link">
                <a href="/link2">link2</a>
            </div>
            <div class="footer-link">
                <a href="/link3">link3</a>
            </div>
            <div class="footer-link">
                <a href="/link4">link4</a>
            </div>
        </div>
    </div>
</footer>

Custom css:

.footer-container {
    display: flex; justify-content: center; gap: 38px;
}
.footer-link a {
    text-decoration: none; color: #0a0a0a; font-size: 14px;
}

 

Please let me know if it works as expected!

Best regards

Mageplaza | Top-Rated Shopify Agency | Trusted by 230,000+ worldwide merchants


If our suggestion works for you, please give it a Like or mark it as a Solution!


Should you have any questions or concerns, feel free to contact us via consultant@mageplaza.com

Jenny100
Visitor
2 0 1

Hi, what I meant was that Privacy Policy, Refund Policy, Shipping Policy- contents of all these I am going to put into Terms of Service. So the bottom of my footer looks like the following & nothing else.

 

                                                                       2025 My Store 。Terms of Service

 

 

So I need to delete Privacy, Refund & Shipping policy buttons. Thanks for your help.