Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

Disable linking from post title and featured image

To disable linking from the post title and featured image you may add the CSS provided in this article to the Divi Theme Options.

For this, go to Divi >> Theme Options in the WordPress dashboard menu. Now stay in the General tab and scroll to the bottom of the settings to paste this CSS code.

<style>
.et_pb_post .entry-title,
.et_pb_post .post-media a
{
	pointer-events: none;
}
</style>