How to centre footer link

Hello @DASCPA
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-footer.css ----> line number 52
search this code

.footer__content-bottom-wrapper {
display: flex;
width: 100%;
}

and replace with this code

.footer__content-bottom-wrapper {
display: flex;
width: 100%;
flex-direction: column-reverse;
align-items: center;
}

result

If this was helpful, hit the like button and mark the job as completed.
Thanks

1 Like