jQuery( document ).ready(function($) { // Change the width of logo wp.customize('appointment_logo_length', function(control) { control.bind(function( controlValue ) { $('.custom-logo').css('max-width', '500px'); $('.custom-logo').css('width', controlValue + 'px'); $('.custom-logo').css('height', 'auto'); }); }); });