Change footer layout to horizontal on mobile for Dawn theme

Solved

Change footer layout to horizontal on mobile for Dawn theme

andrwmai
Tourist
11 0 4

I'd like to change the layout of the footer on our site (Mobile view) to horizontal like the Desktop view. Currently the links are aligned vertically to the left. Is it possible to change them to horizontal and centered?

 

Store URL: https://ivankovatelier.com/

 

CleanShot 2024-10-03 at 11 .16.48@2x.png

Accepted Solution (1)

comercioservice
Shopify Partner
291 37 36

This is an accepted solution.

@andrwmai hi,

hope you are well,
check the list,

1, from admin, go to Online Store > Themes.
2, Actions > Edit code for your active theme.
3, Find and open the theme.liquid file, maybe in the Layout folder.
4, Look for the </head> tag and paste the code in the end

 

 

<style>
ul.footer-block__details-content.list-unstyled {
    display: flex;
    justify-content: center;
    gap: 0px 20px;
    flex-wrap: wrap;
}
</style>​

 

 

I hope it works for you, let me know, and If you'd like to discuss this more, don't hesitate to send me a PM
Thank you
Was my reply helpful? Click Like to let me know! Was your question answered? Mark it as an Accepted Solution.
Need store customizations, bug fixing or development ? Contact with us -- Support form for quick quote!
BFCM Big Deals: Big savings 25% off -on our Shopify FAQs apps!

View solution in original post

Replies 5 (5)

andrwmai
Tourist
11 0 4

Here's an example: https://xlim.link/

andrwmai_0-1727972432045.png

 

comercioservice
Shopify Partner
291 37 36

This is an accepted solution.

@andrwmai hi,

hope you are well,
check the list,

1, from admin, go to Online Store > Themes.
2, Actions > Edit code for your active theme.
3, Find and open the theme.liquid file, maybe in the Layout folder.
4, Look for the </head> tag and paste the code in the end

 

 

<style>
ul.footer-block__details-content.list-unstyled {
    display: flex;
    justify-content: center;
    gap: 0px 20px;
    flex-wrap: wrap;
}
</style>​

 

 

I hope it works for you, let me know, and If you'd like to discuss this more, don't hesitate to send me a PM
Thank you
Was my reply helpful? Click Like to let me know! Was your question answered? Mark it as an Accepted Solution.
Need store customizations, bug fixing or development ? Contact with us -- Support form for quick quote!
BFCM Big Deals: Big savings 25% off -on our Shopify FAQs apps!
comercioservice
Shopify Partner
291 37 36

@andrwmai 
result: 

gutenplayer_0-1727972626978.png

Update code: 

 

<style>
ul.footer-block__details-content.list-unstyled {
    display: flex;
    justify-content: center;
    gap: 0px 20px;
    flex-wrap: wrap;
}

ul.footer-block__details-content.list-unstyled li a {
    line-height: 7px;
}
</style>

 

Was my reply helpful? Click Like to let me know! Was your question answered? Mark it as an Accepted Solution.
Need store customizations, bug fixing or development ? Contact with us -- Support form for quick quote!
BFCM Big Deals: Big savings 25% off -on our Shopify FAQs apps!
andrwmai
Tourist
11 0 4

Hi @comercioservice, thank you for replying. Do you mean I should paste the code above the </head> tag (screenshot below)? Because it looks like the tag is at the end of the whole section.

 

andrwmai_0-1727972710474.png

 

andrwmai
Tourist
11 0 4

Thank you so much. This works perfectly! Mobile view definitely looks so much better now.