code for centering footer menu on taste theme?

Solved

code for centering footer menu on taste theme?

emotionaldebt22
Excursionist
56 0 6

Screen Shot 2023-12-23 at 2.24.39 PM.png

Accepted Solution (1)

theycallmemakka
Shopify Partner
1795 436 464

This is an accepted solution.

Hi @emotionaldebt22 ,

 


Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>

<style>
@media only screen and (max-width: 600px) {
  .footer-block__details-content .list-menu__item--link{
    justify-content: center;
    
}

h2.footer-block__heading {
    justify-content: center;
    display: flex;
}
}

</style>

 

If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

View solution in original post

Replies 4 (4)

SterlingChris
Visitor
3 0 0

To center the footer menu on the Taste theme in Shopify, adjust the theme settings or styling options to align the menu items in the center. If you encounter any challenges, I'm here to assist further.

Best Regards,

Sterling Chris
Shopify Expert
emotionaldebt22
Excursionist
56 0 6

ive checked every section in the theme settings but no luck. i think this needs to be coded in

theycallmemakka
Shopify Partner
1795 436 464

This is an accepted solution.

Hi @emotionaldebt22 ,

 


Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>

<style>
@media only screen and (max-width: 600px) {
  .footer-block__details-content .list-menu__item--link{
    justify-content: center;
    
}

h2.footer-block__heading {
    justify-content: center;
    display: flex;
}
}

</style>

 

If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

emotionaldebt22
Excursionist
56 0 6

thank you very much!