@JoeyRoo - please add this css to the very end of your app.css file and check,
Shopify Admin → Online Store ->Theme → Edit code → app.css
@media screen and (min-width:48em){
#footer .row .medium-6{flex: 0 0 33%;}
}
A user seeks to align footer menus horizontally, specifically moving the “Wholesale” menu to sit beside the “Contact” menu instead of below the social icons.
Multiple solutions provided:
.footer .medium-6 CSS class in app.css or base.css0 0 50% to 0 0 33% (or 30%) using a media query for screens min-width 48em/600pxmedium-6 to medium-4 directly in the theme codeTechnical approach:
All solutions target the same issue: adjusting column width percentages in the footer’s responsive grid layout. The fixes involve navigating to Shopify Admin → Online Store → Themes → Edit Code → Assets → app.css (around line 835) and modifying the media query.
Resolution: The original poster confirmed the solution worked with a “Perfect. Thank you!” response, marking the issue as resolved.
@JoeyRoo - please add this css to the very end of your app.css file and check,
Shopify Admin → Online Store ->Theme → Edit code → app.css
@media screen and (min-width:48em){
#footer .row .medium-6{flex: 0 0 33%;}
}