Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I would like to make a change to the footer layout specifically for mobile view. Currently, the "Explore" and "Support" sections appear one below the other, but I’d like them to be displayed side by side, similar to how they appear in the desktop view.
Hi,
Hope this will work
- Go to Your Theme Code and Click Edit code.
- Find the Footer File (footer.liquid)
- Wrap the “Explore” and “Support” Sections in a Flexbox
- Add Custom CSS for Mobile View
CSS example
@media screen and (max-width: 768px) {
.footer__blocks {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
.footer__block {
width: 48%; /* So they don’t overflow */
margin-bottom: 10px;
}
}
Can you help me on add flexbox
Hi,
Good morning,
Welcome to the shopify ,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
Hello @Adesh1
Please follow the steps below after logging into the Shopify admin:
@media only screen and (max-width: 479px)
{
.section-footer__row .section-footer__row__col.section-footer__menu-block
{
flex: 0 1 50%;
}
}
Please hit Like and Mark it as a Solution if you find our reply helpful.
Thank You,
WebDesk Solution Support Team
Get a Free Quote | Email | Shopify Partner | Shopify Development Agency | Call: 877.536.3789
Canada: 150 King St W. STE 200, Toronto, ON M5H 1J9
| USA: 98 Cutter Mill Rd. STE 466, Great Neck, NY 11021