How I can centered the blog featured image on Horizon 2.1.4 theme?
Hello @Ell_Soll
Could you please share your store URL and password if enabled
? This will help us take a closer look and provide a more accurate solution.
Step 1:
- Go to Online Store → Themes → … → Edit code.
- Open the blog template file where featured images are output (usually
templates/article.jsonor the sectionsections/article-template.liquid/main-article.liquid).
Step 2: Add custom CSS:
Go to Online Store → Themes → Customize → Theme settings → Custom CSS (or Edit code → assets/theme.css if no custom CSS box).
Add:
/* Center blog featured image */
.article-template__hero,
.article-template__hero img,
.article__image,
.article__image img {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
Tip: If the image is still left-aligned, your theme might be using flexbox for the article hero. In that case, add:
article-template__hero {
display: flex;
justify-content: center;
}
URL address:
Not working.
URL address:
Hey @Ell_Soll
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
div#shopify-block-AT2lVaCsrWmZ1TmFib__blog-post-image {
text-align: -webkit-center !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Hello @Ell_Soll
Make this changes in your code:
.blog-post-featured-image {
--width: auto; /* don’t force 100% */
--custom-width: auto;
display: block;
position: relative;
width: auto;
max-width: 800px; /* adjust as needed */
margin: 0 auto; /* centers the block */
text-align: center;
}

