/*
 Theme Name:     Divi Child Theme
 Theme URI:      http://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         Elegant Themes
 Author URI:     http://www.elegantthemes.com
 Template:       Divi
 Version:        1.2
*/

@import url("../Divi/style.css");

/* =Theme customization starts here
------------------------------------------------------- */
.form-allowed-tags { display: none;
}
.comment_avatar img {
height: 80px;
width: 80px;
}
@media only screen and (max-width: 767px) {
.comment-reply-link {
bottom: -50px;
top: auto;
}
}
.et_pb_pricing_2 .et_pb_pricing_table {
    width: 50%;
    min-height: 730px;
}
#main-header {
    /* box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); */
    -moz-box-shadow: 0 opx 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}
#et-top-navigation {
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-weight: 500;
}
.et_header_style_centered #logo {
    max-height: 54%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.et_pb_fullwidth_header .et_pb_fullwidth_header_container.left .header-content {
    margin-right: 2%;
    margin-left: -8%;
    text-align: left;
}
.et_header_style_centered #main-header div#et-top-navigation {
    position: relative;
    bottom: 0;
    width: 100%;
    padding-bottom: 20px!important;
}
	
Hello,

I apologize for delay in reply.

Yes correct if you add 4 columns in each column you add Blog module , each column is supposed to have the most recent post in it and all 4 should show the same post.

I can suggest a workaround to show blog posts in 4 columns.

Please take a section , assign some css id to your section , suppose we name it mycustomblog ,in this section , please add 1/4 + 3/4 column. Keep 3/4 column empty and in 1/4 column please add a blog module in grid mode and then go to custom css section in epanel and please add this css code here

#mycustomblog .et_pb_column.et_pb_column_1_4 {
width: 100%;
}
#mycustomblog .et_pb_blog_grid .et_pb_post {
float: left;
margin-right: 1%;
max-width: 24%;
margin-bottom: 10px;
}
#mycustomblog .et_pb_blog_grid .et_pb_post:nth-child(4n+1) {
clear: both !important;
}