Solved

How to make the list in the footer vertically

JSagaBulala
Excursionist
21 0 3

Hello,

I want to solve my problem in the footer. Can we make this list in the footer vertically?

Screenshot_66.png

 I want it to be like this one: 

Screenshot_69.png

 

Is there anyone who can help me this? 

 

Thank you!


Here is my store: cherriesnbananas.myshopify.com

Accepted Solution (1)

StevenPM
Shopify Partner
76 7 8

This is an accepted solution.

The footer links can be stacked vertically by setting them as blocks rather than inline. Like so:

 

#shopify-section-footer .nav .nav__item {
display: block;
}

 

I updated the styles.css.liquid code for you. Should be working now.

Let me know if this has solved your problem.

Steven

View solution in original post

Replies 2 (2)

StevenPM
Shopify Partner
76 7 8

This is an accepted solution.

The footer links can be stacked vertically by setting them as blocks rather than inline. Like so:

 

#shopify-section-footer .nav .nav__item {
display: block;
}

 

I updated the styles.css.liquid code for you. Should be working now.

Let me know if this has solved your problem.

Steven

JSagaBulala
Excursionist
21 0 3

Thank you very much Steve