Location: site_wide_header
Font Load – Lato
UIKit Preloader CSS
#global-preloader { position: fixed; z-index: 99999999999; height: 100vh; width: 100vw; background-color: #ffffff; overflow: hidden; }Continue reading
UIKit Preloader JS
;(function ($) { $(document).on(‘ready’, function(){ if($(‘#global-preloader’)) return $(‘#global-preloader’).fadeOut(500); }); })(jQuery);Continue reading
Newsletter Modal CSS
.uk-section-primary.uk-section, #userwayAccessibilityIcon, .tm-header, .tm-bottom { display: none; } .uk-section-default.uk-section, .uk-container { padding: 0; }Continue reading
Territory Rulebook Chatbot GPT
Hide bookable cart sidebar css
.booqable-component #booqable-launcher { display:none; /* hides cart*/ } .booqable-component #booqable-sidebar { display:none; /Hides cart sidebar/ }Continue reading
Menu Sub item border radius
ul.sub-menu{ border-radius: 3px !important; } .header-navigation .header-menu-container ul ul li.menu-item > a:hover { border-radius: 3px; }Continue reading
Call Rail Form Styling
.form-control { width: 100%; /* This will make sure that input fields take full width */ }Continue reading
WP Simple Pay: Require Terms of Service Link Click
jQuery( function() { var fieldId = ‘simpay-form-771-field-5’; var $checkbox = jQuery(‘#’ + fieldId); $checkbox.prop( ‘disabled’, true ); jQuery(‘label[for=”‘ + fieldId + ‘”] a’).on( ‘click’, function() { $checkbox.prop( ‘disabled’, false ); } ); });Continue reading