Hello I have a website Im working on msmoh.myshopify.com
I want to change the footer arrangement only in the mobile view where the social media links are on the top, the two buttons are as they are in the middle and the store info is in the bottom.
I want to do it using css only. Any suggestions?
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width: 749px){
footer#footer .custom-footer {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
footer#footer .custom-footer .ft-box {
width:100%;
}
footer#footer .custom-footer .ft-box.footer-block1 {
order: 3;
}
footer#footer .custom-footer .ft-box.footer-block2.order-button {
order: 2;
}
}
Hi thanks that solution worked.
I have a question what would it be if I wanted to change the arrangement to the one attached below
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >theme.css and paste this at the bottom of the file:
replace this one css
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width: 749px){
footer#footer .custom-footer {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
footer#footer .custom-footer .ft-box {
width:100%;
order: 2;
}
footer#footer .custom-footer .ft-box.footer-block1 {
order: 3;
padding-top: 15px;
}
footer#footer .custom-footer .ft-box.footer-block2.order-button {
order: 1;
padding-top: 0;
}
}
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.