How can I center the collection list in the Minion theme?

Topic summary

A user seeks to center the collection list in the Shopify Minion theme, which currently aligns to the left.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file in the Assets folder (typically base.css, style.css, or theme.css)
  • Add the following CSS code at the bottom:
.slider-component.grid.el_mt_40.text-center {
    justify-content: center;
}
  • Save the changes

Outcome:
The original poster confirmed the solution worked exactly as intended. An example image was shared showing the centered layout.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

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

1 Like

Hi @Nextdayautomati

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!

1 Like

Thanks that is exactly what I wanted.