Center Blog Post Exerpt

Topic summary

A user seeks help centering blog post excerpts on desktop view for their Shopify store. They provide a URL and screenshot showing the current left-aligned layout.

A solution is offered involving custom CSS:

  • Navigate to Edit code in the theme editor
  • Locate the base.css file
  • Add CSS code at the end to center card content and information elements using text-align: center and justify-content: center properties

The responder includes a screenshot demonstrating the centered result after applying the code. The discussion appears resolved with a working technical solution provided.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Is someone able to assist me in centering my blog post exerpt in desktop?

Thank you, Ella.

URL: https://www.samiyaskincare.com.au/blogs/chakras

Hi @ellacoker

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.card__content {
    text-align: center !important;
}

.card__information {
    justify-content: center !important;
    display: grid !important;
}

Result

Best,

DaisyVo