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
Hi everyone,
So basically when I switch from desktop view to mobile the footer menu on my site is very messy. I'm not live yet so I attached screenshots. I definitely want the desktop view to remain the same, but in mobile view the menu options could just be listed as opposed to how it looks now with the menu options being listed on one line. Would appreciate any help or code to fix this!
Solved! Go to the solution
This is an accepted solution.
Thanks for the info, check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
Align to the left.
@media screen and (max-width: 749px){
.footer-block__details-content {
flex-direction: column;
align-items: flex-start;
}
}
And Save.
Or align to the center.
@media screen and (max-width: 749px){
.footer-block__details-content {
flex-direction: column;
align-items: center;
}
.footer-block__heading {
text-align: center;
}
.footer-block__image-wrapper {
margin: auto;
}
}
And save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @masha3
Would you mind to share your store URL? Thanks!
Hi @made4Uo sure, here's the preview link: https://21j19uluw7bed35w-81685774618.shopifypreview.com
This is an accepted solution.
Thanks for the info, check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
Align to the left.
@media screen and (max-width: 749px){
.footer-block__details-content {
flex-direction: column;
align-items: flex-start;
}
}
And Save.
Or align to the center.
@media screen and (max-width: 749px){
.footer-block__details-content {
flex-direction: column;
align-items: center;
}
.footer-block__heading {
text-align: center;
}
.footer-block__image-wrapper {
margin: auto;
}
}
And save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Awesome, that worked beautifully! Thank you so much!!! 😃
Welcome, I know youll choose the center one. 😊