How can I align my quick links horizontally?

I need help placing my quick links together, horizonally.

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

@ericsoho

Please follow up below steps. May this help you.

  1. Go to online store > themes > actions > edit code
  2. Find Assets > theme.css and paste below CSS at the bottom of the file
@media only screen and (max-width: 749px)

.site-footer__linklist.list--inline > li
{
float: left !important;
}

Try adding text-align: left or float: left in the parent div. You can provide link for the same, I’ll share screenshot with the required CSS.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.scss.css and paste this at the bottom of the file:
@media only screen and (max-width: 749px){
.site-footer__linklist.list--inline > li
{
float: left !important;
}
li.site-footer__linklist-item {
margin: 0px 10px;
}
}