Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

Remove links from fullwidth layout title and image

Add this code to the page to remove the link only from that page. If you want to remove it sitewide, the above CSS can be added to Divi Theme Options.

.el_dbe_full_width .entry-title a, .el_dbe_full_width .post-media a{
pointer-events: none;
}

If you do not want to remove the link from the title, clip out the following part (.el_dbe_full_width .entry-title a,).

In this case, updated code will be:

.el_dbe_full_width .post-media a{
pointer-events: none;
}