Hello, I would like to move the store policies column to the right a little bit in the footer, how do i do this?
Hi @timelessracing , Can you share your store url?
Hi @timelessracing
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code
2/ Search for “theme.liquid” file
3/ Open the file and search for tag and add the following code above tag
Here is the code for Step 3:
{% style %}
@media (min-width: 767px) {
footer.footer .columns.widget--menu-column{
padding-left: 45px !important;
}
}
{% endstyle %}
replace “45px” by your padding, this is result:
If this helpful, please let us know by giving us a like and marking its as a solution. Thanks you
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for “theme.liquid” file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for tag and add the following code above tag: https://prnt.sc/KWtKYyZkDtYJ
Here is the code for Step 3:
{% style %}
footer#footer > .row > div:nth-child(4) {
padding-left: 50px !important;
}
{% endstyle %}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.