Hi,
URL is www.daughterofanangel.com
Password is JENNA
I am trying to center my entire blog post, date, title header, everything on the blog page.
Thanks in advance!
A user needed help centering all elements on their blog page in Shopify’s DAWN theme, including blog posts, dates, title headers, and overall page content.
Solutions Provided:
Multiple community members offered CSS-based fixes involving:
.article-card__excerpt.article-card__info.main-blog h1.title--primarytext-align: center; to these elementsOne solution also suggested adding custom code to theme.liquid, though specific code details were referenced via an image.
Outcome:
The issue was resolved — the original poster confirmed one of the CSS solutions worked successfully.
Hi,
URL is www.daughterofanangel.com
Password is JENNA
I am trying to center my entire blog post, date, title header, everything on the blog page.
Thanks in advance!
Hello @jennarose
I would like to give you some recommendations to support you
You can add custom code to theme.liquid like this
I hope the above is useful to you.
Kind & Best regards!
GemPages
Hi @jennarose ,
Go to your Online Store > Themes > click 3 dots button > Edit code > Assets > base.css, add those CSS code at the bottom of your file, click Save button
.article-card__info,
.article-card__excerpt { text-align: center; }
Hello There,
.main-blog h1.title--primary {
text-align: center;
}
.article-card__excerpt {
text-align: center;
}
.article-card__info {
text-align: center;
}
This worked! Thank you!!