Files
Zeitfresser-Wordpress-Theme/inc/blocks/general/container-width/customizer-container-width.js
T
2026-04-20 22:55:59 +02:00

10 lines
206 B
JavaScript

jQuery( function( $ ) {
wp.customize('container_width',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--container-width', to+"px");
}
);
} );
} );