Hi guys, how can I center the “Quick Links” on the right side of my footer? Any help is greatly appreciated! Website: flammashop.com
Topic summary
A user seeks help centering the “Quick Links” section on the right side of their footer.
Solution Provided:
- Another user confirms the desired layout with a screenshot showing centered Quick Links
- Provides step-by-step CSS fix:
- Navigate to Shopify admin → Online Store → Themes
- Click Actions → Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add specific CSS code at the bottom targeting the footer block grid item with
padding-left: 12.5%within a media query for screens min-width 749px - Save changes
Status: Solution offered with code snippet and implementation instructions. The helper requests the original poster mark the post as solved if successful.
Hi @flammagreg
Do you mean like this?
If it is check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (min-width: 749px){
.footer-block.grid__item.footer-block--menu.scroll-trigger.animate--slide-in {
padding-left: 12.5%;
}
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

