How do i make the featured blog post images square and take away so their is not so much of the text visable so maybe just one sentence then have (β¦) and you click on it ro read more? Thank you in advance ![]()
How do i make the featured blog post images square and take away so their is not so much of the text
Do you mean this one?
If it is check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
@media screen and (min-width: 740px) {
.blog__posts.articles-wrapper .article.grid__item {
width: 20%;
max-width: 20%;
}
.blog__posts.articles-wrapper {
justify-content: center;
}
.card__inner, .card__media {
height: 30vh;
}
}
And Save.
Please donβt forget to Like and Mark Solution to the post that helped you. Thanks!
