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
A user wants to reposition footer links to the bottom right on desktop view, aligned with the country/region selector, while keeping mobile layout unchanged.
Two solutions provided:
Solution 1 (BSSCommerce-HDL - Initial):
</body> tagSolution 2 (BSSCommerce-HDL - Revised CSS approach):
.footer-block__details-content, .footer__column.footer__localization, and .localization-formOne responder offered direct assistance with store access. The CSS solution appears most practical for desktop-only positioning without affecting mobile layout.
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
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.
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 tag:
Hope this can help you ![]()
Hi [email removed] @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 ![]()