I have some custom Java in my customizer that is controlling several section overlays (see this thread: https://community.theme.co/forums/topic/overlay-transparent-color-over-background-image/page/2/) as well as some responsive text. After the 4.4 update none of it seems to be working anymore. I’d like it to work again.
Example of section overlay:
jQuery(function($){
$( ".page-id-6713 #x-section-1" ).wrapInner( "<div class='section-overlay'></div>" );
});
There are several of each of these I’m using that just use different classes.
Example of responsive text:
(function($){
$(".h1-resp").fitText(1.0, { minFontSize: '33px', maxFontSize: '64px' });
})(jQuery);
There are several of each of these I’m using that just use different classes and size parameters.
Thanks