Removing tooltip/titles on Divi images

From your Dashboard go to Divi -> Theme Options -> IntegrationAnd add the following code to the <head> <script> jQuery(document).ready(function($){ $("img") .mouseenter(function() { var title = $(this).attr("title"); $(this).attr("temp_title", title); $(this).attr("title",""); }) .mouseleave(function() { var title = $(this).attr("temp_title"); $(this).attr("title", title); $(this).removeAttr("temp_title"); … Read more…

Optimizing videos for web

There are a couple of things to consider when adding video to your website.Generally you want to embed them using other services (like YouTube, Vimeo, etc).Sometimes however that is not an option, because you might want to use it as … Read more…

Fixed Divi Header – auto hide

In this short post I want to show you how to make a header stick to the top of you screen, and hide/show automatically based on scroll.Unfortunately Divi doesn’t have too many options for that, which is why we need … Read more…

Custom styles in Divi Text Module

You can simple add custom colors and other styles to specific parts of your text, even without defining them as different h1/h2/etc. In the video I build a simple example – there’s no audio, cause it is sooooo simple 😉 … Read more…