Hello Dennis,
You need to edit some code in theme files and I am assuming that you are using the Child theme also
Follow these steps
Step 1) Open your child theme root folder ie prasoonpro-child (you will find this folder in wp-content/themes/ )
Step 2) Go to inc -> widgets and paste this file here
Download
Step 3) Go to child theme root folder and open functions.php in any text editor
Step 4) Add the code just before the ?> sign
require dirname( __FILE__ ) .'/inc/widgets/blog-style2-section-widget.php';
Step 5) Now login to your WordPress dashboard and go to Appearance->Customize->Additional CSS
Step 6) Paste this CSS and Publish
.blog-wrap .image img{
height:auto;
border-radius: 0;
}
Step 7) Now add this widget in your page
Note: This is default 2 columns blog post if you want to show single column then you need to edit this file in line no 80 (<div class=”col-md-6 col-sm-6″> ). Just change 6 to 12 for eg(<div class=”col-md-12 col-sm-12″>).
From Line no 55 you can set number of posts to display. Currently set to 2
Regards