Shopify themes, liquid, logos, and UX
Hi, is there a way to adjust the Menus in the Footer so they are all in line? Currently the "Wholesale" Menu is sitting below the Social icons, but I want it to sit next to the "Contact" menu
Solved! Go to the solution
This is an accepted solution.
@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%;}
}
This is an accepted solution.
@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%;}
}
Perfect. Thank you!
Hi @JoeyRoo ,
Here the problem is that there is a css class in your social div that says medium-6 this is to attain the width of 6% of the overall in medium screen size devices. if you have experience you can easily find the snippet for this change the class to medium-4
if you have no experience regarding this you can follow simple steps:
1. Go to Shopify Admin Panel
2. Select Online Store
3. In Online Store click the "..." and choose “edit code” from the menu.
4. In app.css,
#footer .small-12.medium-6.columns {
flex: 33%;
}
Result:
I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans
- Here is the solution for you @JoeyRoo
- Please follow these steps:
- Then find the base.css or theme.css or app.css file.
- Then add the following code at the end of the file and press 'Save' to save it.
@media only screen and (min-width: 600px) {
.footer .medium-6 {
flex: 0 0 30% !important;
}
}
- Here is the result you will achieve:
- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.
If our suggestions are useful, please let us know by giving it a like or marking it as a solution.
Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)
Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page
Hello @JoeyRoo
Go to online store ---------> themes --------------> actions ------> edit code------->assets --->app.css ----> line number 835
search for this code
@media print, screen and (min-width: 48em) {
.medium-6 {
flex: 0 0 50%;
max-width: 50%;
}
}
and replace with this code
@media print, screen and (min-width: 48em) {
.medium-6 {
flex: 0 0 30%;
max-width: 50%;
}
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
In Canada, payment processors, like those that provide payment processing services t...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025