This topic has 4 replies, 2 voices, and was last updated 3 years, 4 months ago ago by Olga Barlow
Hi,
In the Blogpage section the images are not the same height, https://gyazo.com/0f7280acb61eaf852d5ccde745a011f0
Some are the same but not every. Also i would like to have every blog section the same heighth as in text and button on the same height. is that possible?
https://eikcertificering.nl/de-kijk-van-eik-2/
Can i also can make shadow around the blog?
Thanks.
Hello,
1) go to Theme Options > Blog > Blog layout > set the Image Sizes For Blog you need to crop images.
2) If you set the min-height for the title of the post you’ll get white space below titles that has fewer strings https://prnt.sc/17ngq6d Is it ok for you?
3) Do you want the shadow on hover or with the default state?
If you need with the default state then add the below code to Theme Options > Custom CSS
article.blog-post, article.post-grid {
box-shadow: 0 3px 6px rgba(0,0,0,.1066666667),0 3px 6px rgba(0,0,0,.1533333333)!important;
padding: 15px;
}
Regards
Thanks that helps a lot although the boxes should have the same height now. With rows you can set the columns to equal heigth but with blogs i dont know how. Thanks again https://gyazo.com/2e1b16e1abf088c88ba5968d6a4ccc55
Hello,
Try the below code
.et_blog-ajax.row {
display: flex;
flex-wrap: wrap;
}
.et_blog-ajax .wp-picture {
min-height: 184px;
display: flex;
align-items: center;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up