How do I centre align my blog post title? I want all my blog post not only the specific link.
1 Like
sorry for that issue can you please try this code
- Go to Online Store->Theme->Edit code
- Asset->/styles.scss.liquid->paste below code at the bottom of the file.
#shopify-section-article__main .heading-wrapper {
align-items: center;
}
1 Like
Please add the following code at the bottom of your assets/styles.scss.liquid file.
#template-article #shopify-section-article__main .title{ margin: 0 auto; }
#template-article .container.blog-meta { text-align: center; }
Hope this works.
Thanks!
1 Like