How to move privacy links to the right side

Hi,

Right now my privacy links are located on the left side of the page just next to the trademark, and I want them to be on the opposite side like this:

Can someone please help me to do so?

1 Like

Hi @arutze ,

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.footer__content-bottom.scroll-trigger.animate--slide-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

Result:

I hope it help.

hey @Made4uo-Ribe thanks for replying! Just one thing, I wanted to leave the ateliermizuni trademark where it was and only move the links. Is it possible to do so?

1 Like

Yes we can do that, I put this only on desktop. Cause in the mobile it dont have space at all.

Check this.

@media only screen and (min-width: 875px){
ul.policies.list-unstyled {
    position: absolute;
    left: 60%;
    bottom: 60%;
    margin-right: auto;
}
}

Result:

1 Like