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?
Mobile footer needs reordering: quick links displayed side-by-side on one line, with the email/subscribe section appearing first. A screenshot is central to understanding the current layout.
Suggested approach:
Implementation guidance:
Complication:
Status:
Outstanding needs:
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?