New Shopify Certification now available: Liquid Storefronts for Theme Developers

Website footer columns mobile view

kikiscott
New Member
7 0 0

I recently changed my footer to display as columns using a Custom code however Is there a way to make the space between the columns neater so that they’re lined up with each other? Also can you help me to move my currency option and ‘ © 2023, KEEKS BY KIKI’ part underneath said columns? 

my website is www.keeksbykiki.com

Replies 8 (8)
kikiscott
New Member
7 0 0

Hi. Thank you, the theme is Brooklyn and I just inserted it in the custom css section 

Beae_Anthony
Shopify Partner
436 167 168

Hi @kikiscott ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

 

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid file
3. Paste below code before </body>:

<style>
@media screen and (max-width: 768px){
#shopify-section-footer .grid-uniform {
    flex-direction: column;  
}
}
</style>

Beae_Anthony_0-1695538684597.png

 

Best regards,

Anthony

Beae - The NextGen Page Builder


- Was my answer helpful? Please hit Like or Mark it as solution!
- Get in touch with us: App Store | Blog
kikiscott
New Member
7 0 0

I don’t want to change the column layout I just want them to be aligned so no this didn’t help

gwachts
Shopify Partner
8 1 0

hi 

Kikiscott you want like that 

Please the attactment

Moeed
Shopify Partner
3051 761 925

Hey @kikiscott 

 

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) {
#shopify-section-footer .grid-uniform {
    flex-direction: column !important;
}
}
</style>

RESULT:

Moeed_0-1695541786063.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 developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
kikiscott
New Member
7 0 0

I don’t want to change the column layout I just want them to be aligned so no this didn’t help

PageFly-Richard
Shopify Partner
3678 807 1455

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Theme.scss.css

@media screen and (max-width: 767px) {
#shopify-section-footer .grid-uniform {
    flex-direction: column !important;
}
}

Hope you find my answer helpful!
Best regards,
Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

kikiscott
New Member
7 0 0

This ruined the layout of my whole website!