The collection list in the Minion theme aligns with the left side of the page. I would like it Centered. If anyone could help, it would be greatly appreciated.
https://www.nextdayautomation.com/collections/mechanical
Best regards
Ernie
A user seeks to center the collection list in the Shopify Minion theme, which currently aligns to the left.
Solution Provided:
base.css, style.css, or theme.css).slider-component.grid.el_mt_40.text-center {
justify-content: center;
}
Outcome:
The original poster confirmed the solution worked exactly as intended. An example image was shared showing the centered layout.
The collection list in the Minion theme aligns with the left side of the page. I would like it Centered. If anyone could help, it would be greatly appreciated.
https://www.nextdayautomation.com/collections/mechanical
Best regards
Ernie
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:
slider-component.grid.el_mt_40.text-center {
justify-content: center;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks that is exactly what I wanted.