Footer Reconfiguration - Mobile and Desktop

Solved

Footer Reconfiguration - Mobile and Desktop

ellacoker
Shopify Partner
201 0 29

Hello,

Is anyone able to assist my in...

1. aligning my logo image to the left of the footer in desktop mode while keeping it centred in mobile mode

2. centring my footer menu in mobile mode but keeping its alignment to the left in desktop mode

 

See Screenshots, Thankyou!

URL: https://www.livwithin.com.au/?_ab=0&_fd=0&_sc=1

PW: pewpog

Screenshot 2025-03-12 at 09.44.28.pngScreenshot 2025-03-12 at 09.44.38.png

Accepted Solution (1)

Dotsquares
Shopify Partner
177 6 17

This is an accepted solution.

Hi @ellacoker 

Thanks for reaching out to the Shopify community!

To resolve your issue, try updating your section-footer.css file with the following code:

 

 

@media screen and (min-width: 750px){
	.footer-block-image.center {
	  justify-content: flex-start;
	}
}
@media screen and (max-width: 749px){
	.footer-block__heading {
	  text-align: center;
	}
	.footer-block__details-content .list-menu__item--link{
		justify-content: center;
	}
}

 

 

Output:

Desktop

Dotsquares_0-1741756331566.png

 

Mobile:

Dotsquares_1-1741756344502.png

 

Dotsquares Ltd


Problem Solved? ✔ Accept and Like solution to help future merchants.


Shopify Partner Directory | Trustpilot | Portfolio

View solution in original post

Replies 2 (2)

Dotsquares
Shopify Partner
177 6 17

This is an accepted solution.

Hi @ellacoker 

Thanks for reaching out to the Shopify community!

To resolve your issue, try updating your section-footer.css file with the following code:

 

 

@media screen and (min-width: 750px){
	.footer-block-image.center {
	  justify-content: flex-start;
	}
}
@media screen and (max-width: 749px){
	.footer-block__heading {
	  text-align: center;
	}
	.footer-block__details-content .list-menu__item--link{
		justify-content: center;
	}
}

 

 

Output:

Desktop

Dotsquares_0-1741756331566.png

 

Mobile:

Dotsquares_1-1741756344502.png

 

Dotsquares Ltd


Problem Solved? ✔ Accept and Like solution to help future merchants.


Shopify Partner Directory | Trustpilot | Portfolio
ellacoker
Shopify Partner
201 0 29

thank you very much. is there any chance you could help me out with my header post?