Hi,
Is there a way to change the featured blog to a square image instead of the rectangle and move the title to the below of the image?
Here’s the link to the store: https://stoned-and-co-online.myshopify.com/
Hi,
Is there a way to change the featured blog to a square image instead of the rectangle and move the title to the below of the image?
Here’s the link to the store: https://stoned-and-co-online.myshopify.com/
Hi @Lanchaster_91 ,
Please follow these steps:
.blog-item__article{
height: auto !important;
}
.blog-item .overlay{
display: none !important;
}
.blog-item__article__image{
height: 0 !important;
padding-bottom: 100%;
}
.blog-item__article__content{
position: relative !important;
padding: 15px !important;
text-align: center;
}
.blog-item__article__title{
color: var(--heading) !important;
}
Hope it helps!
Hi LitExtension,
Thanks that works.
Is it possible to get the code just to move the title to the bottom without making the image square?
Hi @Lanchaster_91 ,
You just need to remove this code, the image will not show square: https://i.imgur.com/AeIMjhc.png
If it helped you solve your issue, please mark it as a solution. Thank you and good luck.
Hi @Lanchaster_91 ,
I checked and your code is really messed up by previously added codes.
You need to add closing tags “}” to it, it will work fine: https://i.imgur.com/gYUtH5u.png
Hope it helps!
Hi @Lanchaster_91 ,
And please add code:
.blog-item__article{
height: auto !important;
}
.blog-item__article__link{
height: 544px !important;
}
Refer https://i.imgur.com/QuexblW.png
Hope it is clear to you.
awesome, thank you for your help everything work.