We have provided 3 optional Custom CSS code 1. for Post Vertical, 2. for Post Horizontal and 3. for Both Post Vertical and Post Horizontal. You can use the Custom CSS code as per your requirement.
Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
1. For Post Vertical Only
.newscard-widget-horizontal-vertical-posts .post-vertical .second-col .post-boxed:nth-child(3),
.newscard-widget-horizontal-vertical-posts .post-vertical .second-col .post-boxed:nth-child(4){
display: none;
}
2. For Post Horizontal Only
.newscard-widget-horizontal-vertical-posts .post-horizontal .second-col .post-col:nth-child(3),
.newscard-widget-horizontal-vertical-posts .post-horizontal .second-col .post-col:nth-child(4){
display: none;
}
3. For Both Post Vertical and Post Horizontal
.newscard-widget-horizontal-vertical-posts .post-horizontal .second-col .post-col:nth-child(3),
.newscard-widget-horizontal-vertical-posts .post-horizontal .second-col .post-col:nth-child(4),
.newscard-widget-horizontal-vertical-posts .post-vertical .second-col .post-boxed:nth-child(3),
.newscard-widget-horizontal-vertical-posts .post-vertical .second-col .post-boxed:nth-child(4){
display: none;
}
Thanks