Help Me - How to center Copywrite & Payment Icon in Footer Mobile View ?

Help Me - How to center Copywrite & Payment Icon in Footer in Mobile View ?

Website - https://cdscds.store/

1 Like

Hi @liteleraja ,

May I suggest to update code these steps to center payment icons on mobile:

  1. Go to Store Online-> theme → edit code

  1. Assets/footer.css
  2. Add code below to end of file
@media(max-width: 749px){
  .m-payment-icons .m-payment-icons--list{
    justify-content: center;
  }
}

And it seems the copyright is centered.

1 Like

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;
	}
}