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.
Please follow up below steps. May this help you.
- Go to online store > themes > actions > edit code
- 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,
- In your Shopify Admin go to online store > themes > actions > edit code
- 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;
}
}
