on my homepage I am currently using the Penci Latest Posts Widget (1st Standard then List). The image Size Type ist set as default.
In the desktop view I have the problem that the post featured images on the left are not centered vertically. Thus the exerpt text + share icons are much higher than the images. See screenshot attached.
Is there a possibility to centre the post images vertically?
Hello,
on my homepage I am currently using the Penci Latest Posts Widget (1st Standard then List). The image Size Type ist set as default.
In the desktop view I have the problem that the post featured images on the left are not centered vertically. Thus the exerpt text + share icons are much higher than the images. See screenshot attached.
Is there a possibility to centre the post images vertically?
Best regards
Hi,
Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:
@media only screen and (min-width: 961px) {li.list-post.penci-item-listp article {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
align-content: center;
align-items: center;
}
}
Regards,
PenciDesign.