Hello,
- Find the following code in the js/functions.js File inside the headerSchemeChanger: function( activeSlide, onWinLoad ) Function Block:
$('#header.transparent-header:not(.sticky-header,.semi-transparent,.floating-header)').addClass('dark');
and replace it with:
$('#header.transparent-header:not(.sticky-header,.semi-transparent,.floating-header),#top-bar').addClass('dark');
- Find the following code in the js/functions.js File inside the headerSchemeChanger: function( activeSlide, onWinLoad ) Function Block:
$('#header.transparent-header:not(.semi-transparent,.floating-header)').removeClass('dark');
and replace it with:
$('#header.transparent-header:not(.semi-transparent,.floating-header),#top-bar').removeClass('dark');
This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.