How can I center the footer menu on mobile using Dawn theme?

Solved

How can I center the footer menu on mobile using Dawn theme?

jackrivers
Excursionist
24 2 11

I want to center the footer menu on mobile. I have it working for the pc version using this code:

@media screen and (min-width: 768px){
.footer__content-top .grid__item {
    padding-left: 15rem !important;
}
  
.footer__content-top .grid {
    margin-left: 10rem !important;
    margin-right: 10rem !important;}
}

 

My website is: https://bladelighter.com/pages/696969

Accepted Solution (1)

FoysalAhmed
Shopify Partner
2 1 0

This is an accepted solution.

Please Use this code 


@media screen and (max-width: 767px){
.footer-block ul li a {
    text-align: center!important;
    display: block;
}
}

 

View solution in original post

Replies 5 (5)

FoysalAhmed
Shopify Partner
2 1 0

This is an accepted solution.

Please Use this code 


@media screen and (max-width: 767px){
.footer-block ul li a {
    text-align: center!important;
    display: block;
}
}

 

KetanKumar
Shopify Partner
37598 3668 12156

@jackrivers 

yes, please try this code

1. Go to Online Store->Theme->Edit code
2. Asset->/section-footer.css->paste below code at the bottom of the file.

.footer__content-top .grid {
    text-align: center;
}

.footer-block__details-content>li:not(:last-child) {
    margin-right: 0;
}
If helpful then please Like and Accept Solution. Partnership of your ️ Coffee Tips and my code can bring miracles.
Want to modify or custom changes on store Hire Me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
kashco
Explorer
107 1 14

But this does not centralize the menu options, it just centres the title.

KetanKumar
Shopify Partner
37598 3668 12156

@kashco can you please provide your store url so i will check and update you

If helpful then please Like and Accept Solution. Partnership of your ️ Coffee Tips and my code can bring miracles.
Want to modify or custom changes on store Hire Me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
kashco
Explorer
107 1 14