Hi there,
List full layout shows thumbnail and content side by side. The content in List full layout is large (contains lots of information like title, excerpt, read more link etc.) and breaks layout if container width is small. Therefore, in the latest updated we are using container responsiveness. Which means, if container width is smaller than 450px, the layout will automatically show image on top and content on bottom to properly display everything.
There are two possible solution for your issue,
- You can use “List – Mini” layout, which is specially created for displaying in sidebar.
- Use “List – Full” layout and use following method,
- Go to Appearance > Customize > Additional CSS
- Copy CSS mentioned at the end of this message and paste in the additional CSS field
- Click update button
@media only screen and (min-width: 450px) {
.dpt-entry-wrapper {
display: flex;
align-items:flex-start;
align-content:flex-start;
}
.dpt-featured-content {
flex-basis: 33.33%;
margin: 0 20px 0 0;
}
.sub-entry {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-self:stretch;
}
}
Please inform if you need more help on this.
Thanks,
-
This reply was modified 4 years, 4 months ago by Veda.