Different logo for Fixed Nav - kary4/divituts GitHub Wiki

Please add the following script to the wp-admin>divi>theme options>Integration>Add code to the < head > of your blog option:


<script>

jQuery( document ).ready(function() {
(function() {
  
  var getLogo = jQuery('#main-header:not(.et-fixed-header) #logo').attr('src');
  
  jQuery(window).scroll(function(){
  
    jQuery('#main-header:not(.et-fixed-header) #logo').attr('src', getLogo);
  
    jQuery('#main-header.et-fixed-header #logo').attr('src', 'LOGO_TEXT_VERSION');
    
  });
 
 
})()

});

</script>

⚠️ **GitHub.com Fallback** ⚠️