Shopify themes, liquid, logos, and UX
My mobile view for the footer section is like this right now-
I need the quick link's to be side to side in one line and the email part to come first, can anyone help me do this please?
Hi @Motoblox ,
Here’s how you can achieve that in your Modular theme:
Edit Footer in Theme Settings:
Add Custom CSS for Mobile View: If the theme doesn’t have a built-in option for this, you can use custom CSS to tweak the layout on mobile. Here's some CSS that could help:
/* Custom CSS to adjust footer layout */
@media only screen and (max-width: 767px) {
.footer .quick-links {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer .quick-links a {
margin-right: 15px; /* Adjust spacing between links */
}
.footer .email-section {
order: -1; /* Moves the email section to the first position */
margin-bottom: 15px; /* Adds spacing below the email section */
}
}
To add this:
Got it! If you found my suggestions helpful, please consider liking or marking it as a solution.
Your feedback is appreciated! If you have any more questions or need further assistance, just let me know.
Thanks & Regards
Akshay Bhatt
Hi where should i place the custom code in?
I am using dawn theme
everything is discribed step by step
Sorry i dont get it like where should i paste the code?
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025