Help Me - How to center Copywrite & Payment Icon in Footer in Mobile View ?
Website - https://cdscds.store/
Help Me - How to center Copywrite & Payment Icon in Footer in Mobile View ?
Website - https://cdscds.store/
Hi @liteleraja ,
May I suggest to update code these steps to center payment icons on mobile:
@media(max-width: 749px){
.m-payment-icons .m-payment-icons--list{
justify-content: center;
}
}
And it seems the copyright is centered.
Thank You . This worked .
One more help , please .
How to remove EXTRA SPACE at bottom/footer in mobile view ?
Hi @liteleraja ,
May I suggest add code below to Assets/base.css
@media(max-width: 749px) {
body .m-footer--bottom {
padding-bottom: 0;
}
body .m-footer__copyright {
margin-bottom: -24px;
}
}