Rearange the elements positions in the footer

Solved

Rearange the elements positions in the footer

Nykuu
Excursionist
15 0 5

Can someone help me rearrange the position of the elements in the footer only on mobile view?
I need to move the "INFORMATIONS" text box to the side of "POLICIES"
Then the brand information centered.

 

Screenshot_20250520_115116.jpg

Accepted Solution (1)
tim
Shopify Partner
4741 582 1711

This is an accepted solution.

Sorry, when copy-pasting somehow I've lost a dot before footer-block__brand-info. I've amended the code above, please copy it over again.

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

View solution in original post

Replies 3 (3)

tim
Shopify Partner
4741 582 1711

In Customizer, go to your "Footer" section and scroll down its settings till you see "Custom CSS"  paste this code into this setting. Can also try "Custom CSS" in Theme Settings.

@media screen and (max-width: 749px){
    footer.footer .grid {
      display: flex;
    }
    footer .footer-block.grid__item{
      width: calc( (100% - var(--grid-mobile-horizontal-spacing) )/2);
      margin-top: 0rem;
    }
    .footer-block__brand-info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
}

Screenshot 2025-05-20 at 10.29.28 PM.png

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com
Nykuu
Excursionist
15 0 5

Hi @tim!

 

It worked, but the brand information was not centralized. What can be done about this?

 

dfdsf.jpg

tim
Shopify Partner
4741 582 1711

This is an accepted solution.

Sorry, when copy-pasting somehow I've lost a dot before footer-block__brand-info. I've amended the code above, please copy it over again.

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com