Is someone able to assist me in centering my blog post exerpt in desktop?
Thank you, Ella.
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:
text-align: center and justify-content: center propertiesThe responder includes a screenshot demonstrating the centered result after applying the code. The discussion appears resolved with a working technical solution provided.
Is someone able to assist me in centering my blog post exerpt in desktop?
Thank you, Ella.
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