The posts displayed by the blog module have a clickable title and Feature Image by default. Custom CSS Code can be used to make the entire Post clickable inside the Blog module.
Open the Blog module's settings by clicking on the Gear icon
Go to Advanced Tab → CSS ID & Classes → CSS Class
Set the divi-blog-module-clickable-article
Go to WordPress Dashboard → Divi Theme → Options General Tab → Custom CSS
Add this CSS code:
.divi-blog-module-clickable-article .et_pb_post,
.divi-blog-module-clickable-article .et_pb_post {
position: relative;
}
.divi-blog-module-clickable-article .et_pb_post .entry-title a:after,
.divi-blog-module-clickable-article .et_pb_post .entry-title a:after {
position: absolute;
display: block;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.divi-blog-module-clickable-article .et_pb_post:hover,
.divi-blog-module-clickable-article .et_pb_post:hover {
cursor: pointer;
}Save your changes