Hello,
Thanks for your Kind Patience and Apologies for the Delays in replying.
Unfortunately, the Lag is due to the JS being loaded as the Dark Logo is switched using JS Codes and as soon as the JS Codes are available, the Logo/Header Color Scheme is switched. Currently, the Adaptive Color Scheme works globally regardless of Responsive Devices. We will introduce more complex switching of the Classes in Adaptive Color Scheme with more updates.
Meanwhile, consider using the following JS Code at the bottom of the Page and let us know if this works fine for you:
[ch_pre]<script>
let winWidth = $(window).width();
if( winWidth > 992 ) {
let $header = $('#header');
if( $header.hasClass('transparent-header') ) {
$header.addClass('dark');
SEMICOLON.header.logo();
}
}
</script>[/ch_pre]
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.