how can i move them to the middle? using dawn theme thanks!
1 Like
Hi @Pascal0101
Please follow the instructions below.
- From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
- Go to Asset folder and open the base.css file
- 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:

