Here's a tutorial on how to set different logo for Divi homepage: Add the below code in Divi > Theme Options > Integration > Body Code: **Remember to replace YOUR HOMEPAGE LOGO IMAGE URL with your logo image URL. Code: <script> jQuery(function($){ $('.logo_container').append('<a href="/"><img src="YOUR HOMEPAGE LOGO IMAGE URL" class="home-logo" id="logo" style="display:none;" /></a>'); }); </script> <style> body.home #logo { display: none!important; } body.home #page-container .home-logo { display: inline-block!important; } </style> That's it.