2 Column and spacing fix in Footer Refresh theme mobile

Solved

2 Column and spacing fix in Footer Refresh theme mobile

Lowry1
Tourist
7 1 2

Hey,

 

Tried following instructions on other threads by inserting custom code to theme.liquid but nothing happens.

 

I would like to achieve changes shown in screenshot attached. Reduce excesive spacing between links and make quick links menus next to each other.

 

This is for mobile view.

 

Appreciate your assistance.

 

Lowry1_0-1724165936151.png

 

Accepted Solutions (2)

Made4uo-Ribe
Shopify Partner
7742 1872 2291

This is an accepted solution.

Hi @Lowry1 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media screen and (max-width: 749px) {
.footer__content-top {
    padding-bottom: 0;
}
.footer__content-top .grid {
    display: grid;
    grid-template-columns: auto auto;
    max-width: 100%;
}
.footer-block.grid__item {
    margin: 0;
}
.footer-block .grid--2-col .grid__item {
    width: auto;
}
.footer-block__heading, .footer-block__details-content {
    margin-bottom: 10px;
}
.footer-block__details-content .list-menu__item--link {
    padding: 0;
}
.footer__blocks-wrapper.grid {
    margin-top: 3rem;
}
}

 

And Save. 

Result:

Made4uoRibe_1-1724190886518.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Lowry1
Tourist
7 1 2

This is an accepted solution.

Hi @Made4uo-Ribe 

 

Thank you for providing the code. I tried placing code in base.css at the bottom but unfortunately nothing happened.

 

I thought of another solution which is actually worked!

 

I have placed your code inside theme.liquid before </body> as well as added additionally <style> before code and after </style>

 

It looks like this:

 

<style>
@media screen and (max-width: 749px) {
.footer__content-top {
padding-bottom: 0;
}
.footer__content-top .grid {
display: grid;
grid-template-columns: auto auto;
max-width: 100%;
}
.footer-block.grid__item {
margin: 0;
}
.footer-block .grid--2-col .grid__item {
width: auto;
}
.footer-block__heading, .footer-block__details-content {
margin-bottom: 10px;
}
.footer-block__details-content .list-menu__item--link {
padding: 0;
}
.footer__blocks-wrapper.grid {
margin-top: 3rem;
}
}
</style>

 

Result:

Lowry1_0-1724230082109.png

it actually looks better directly on mobile then on desktop mobile view.

 

View solution in original post

Replies 4 (4)

BSS-TekLabs
Shopify Partner
2022 583 687

Hello @Lowry1 
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Lowry1
Tourist
7 1 2

Hey @BSS-TekLabs 

 

Appreciate it.

 

URL: https://35a3c9-c7.myshopify.com/

Pass: ohmane

Made4uo-Ribe
Shopify Partner
7742 1872 2291

This is an accepted solution.

Hi @Lowry1 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media screen and (max-width: 749px) {
.footer__content-top {
    padding-bottom: 0;
}
.footer__content-top .grid {
    display: grid;
    grid-template-columns: auto auto;
    max-width: 100%;
}
.footer-block.grid__item {
    margin: 0;
}
.footer-block .grid--2-col .grid__item {
    width: auto;
}
.footer-block__heading, .footer-block__details-content {
    margin-bottom: 10px;
}
.footer-block__details-content .list-menu__item--link {
    padding: 0;
}
.footer__blocks-wrapper.grid {
    margin-top: 3rem;
}
}

 

And Save. 

Result:

Made4uoRibe_1-1724190886518.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Lowry1
Tourist
7 1 2

This is an accepted solution.

Hi @Made4uo-Ribe 

 

Thank you for providing the code. I tried placing code in base.css at the bottom but unfortunately nothing happened.

 

I thought of another solution which is actually worked!

 

I have placed your code inside theme.liquid before </body> as well as added additionally <style> before code and after </style>

 

It looks like this:

 

<style>
@media screen and (max-width: 749px) {
.footer__content-top {
padding-bottom: 0;
}
.footer__content-top .grid {
display: grid;
grid-template-columns: auto auto;
max-width: 100%;
}
.footer-block.grid__item {
margin: 0;
}
.footer-block .grid--2-col .grid__item {
width: auto;
}
.footer-block__heading, .footer-block__details-content {
margin-bottom: 10px;
}
.footer-block__details-content .list-menu__item--link {
padding: 0;
}
.footer__blocks-wrapper.grid {
margin-top: 3rem;
}
}
</style>

 

Result:

Lowry1_0-1724230082109.png

it actually looks better directly on mobile then on desktop mobile view.