Move payment methods to the middle

how can i move them to the middle? using dawn theme thanks!

1 Like

Hi @Pascal0101

Please follow the instructions below.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
.footer__content-bottom-wrapper.page-width {
    position: relative;
}

@media only screen and (min-width: 768px) {
ul.list.list-payment {
    position: absolute;
    width: 100%;
    inset: 0;
    justify-content: center;
}
}

See result below: