Select Page
Advertisements

To make a Text Module clickable, add a custom CSS class (ie. clickable-module) under Module Settings / Advanced / Custom CSS ID & Classes / CSS Class, then add the following code to Dashboard / Divi / Theme Options / Integration / Add code to the < head > of your blog: 

<script>
jQuery( document ).ready(function() {
jQuery(".clickable-module").wrap('<a href="your-link-goes-here"></a>');
});
</script>