Can the footer text be side by side on Mobile device

Solved

Can the footer text be side by side on Mobile device

Jim
Explorer
65 2 23

033440e52847a704a5934eac07366f1.png

Accepted Solutions (2)
Moeed
Shopify Partner
5082 1355 1636

This is an accepted solution.

Hey @Jim 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
    display: flex !important;
    flex-flow: row !important;
    gap: 3rem !important;
}
.footer-block.grid__item {
    width: 50% !important;
    margin-top: 0 !important;
}
.footer-block.grid__item.scroll-trigger.animate--slide-in {
    margin-bottom: 0 !important;
}
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    margin-top: 0 !important;
}
}
</style>

RESULT:

Moeed_0-1723273800469.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

GTLOfficial
Shopify Partner
497 101 97

This is an accepted solution.

Hello @Jim 

Go to online store ---------> themes --------------> actions ------> edit code------->base.css
add this code at the end of the file.

.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
display: flex;
flex-flow: row;
gap: 1rem;
}

.footer-block.grid__item.scroll-trigger.animate--slide-in {
width: 50% !important;
margin-top: 0px !important;
}

result
12.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

View solution in original post

Replies 3 (3)
Jim
Explorer
65 2 23
Moeed
Shopify Partner
5082 1355 1636

This is an accepted solution.

Hey @Jim 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
    display: flex !important;
    flex-flow: row !important;
    gap: 3rem !important;
}
.footer-block.grid__item {
    width: 50% !important;
    margin-top: 0 !important;
}
.footer-block.grid__item.scroll-trigger.animate--slide-in {
    margin-bottom: 0 !important;
}
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    margin-top: 0 !important;
}
}
</style>

RESULT:

Moeed_0-1723273800469.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

GTLOfficial
Shopify Partner
497 101 97

This is an accepted solution.

Hello @Jim 

Go to online store ---------> themes --------------> actions ------> edit code------->base.css
add this code at the end of the file.

.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
display: flex;
flex-flow: row;
gap: 1rem;
}

.footer-block.grid__item.scroll-trigger.animate--slide-in {
width: 50% !important;
margin-top: 0px !important;
}

result
12.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh