Shopify themes, liquid, logos, and UX
Thanks in advance!
I am looking to move my footer links to the bottom right only for pc version. I would like it to align with the country/region selector. Example shown below.
password: dc
Solved! Go to the solution
This is an accepted solution.
Hi @MMast,
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above </body> tag:
<script>
let policies = document.querySelector('.footer-block__details-content.list-unstyled');
let parentPolicies = policies.parentNode;
let footer_bottom = document.querySelector('.footer__content-bottom-wrapper .footer__localization');
if (footer_bottom && policies) {
if (window.innerWidth >= 750) { // Desktop layout
footer_bottom.insertAdjacentElement('beforeend', policies);
} else { // Mobile layout (revert to original)
parentPolicies.appendChild(policies);
}
}
function updateFooterLayout() {
if (footer_bottom && policies) {
if (window.innerWidth >= 750) { // Desktop layout
footer_bottom.insertAdjacentElement('beforeend', policies);
} else { // Mobile layout (revert to original)
parentPolicies.appendChild(policies);
}
}
}
updateFooterLayout();
// Run on window resize
window.addEventListener('resize', updateFooterLayout);
</script>
Hope this can help you 😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
This is an accepted solution.
Hi @@MMast, i modify a bit css:
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file base.css, theme.css, styles.css, custom.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file -> Save
@media screen and (min-width: 750px) {
.footer-block__details-content {
display: flex;
align-items: center;
}
localization-form {
margin-right: auto;
}
.footer__column.footer__localization {
align-items: center !important;
}
}
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Hello @MMast
To change the placement of footer links in your site, you need to make changes in code side so the links are placed align with the country selector.
Without changing code, its not possible.
if you want me to do this. then you need to give access of your site so i can make changes in your site. I will not charge anything for this.
This is an accepted solution.
Hi @MMast,
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above </body> tag:
<script>
let policies = document.querySelector('.footer-block__details-content.list-unstyled');
let parentPolicies = policies.parentNode;
let footer_bottom = document.querySelector('.footer__content-bottom-wrapper .footer__localization');
if (footer_bottom && policies) {
if (window.innerWidth >= 750) { // Desktop layout
footer_bottom.insertAdjacentElement('beforeend', policies);
} else { // Mobile layout (revert to original)
parentPolicies.appendChild(policies);
}
}
function updateFooterLayout() {
if (footer_bottom && policies) {
if (window.innerWidth >= 750) { // Desktop layout
footer_bottom.insertAdjacentElement('beforeend', policies);
} else { // Mobile layout (revert to original)
parentPolicies.appendChild(policies);
}
}
}
updateFooterLayout();
// Run on window resize
window.addEventListener('resize', updateFooterLayout);
</script>
Hope this can help you 😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
This is an accepted solution.
Hi @@MMast, i modify a bit css:
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file base.css, theme.css, styles.css, custom.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file -> Save
@media screen and (min-width: 750px) {
.footer-block__details-content {
display: flex;
align-items: center;
}
localization-form {
margin-right: auto;
}
.footer__column.footer__localization {
align-items: center !important;
}
}
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025