Hi,
May I know where did you add this code.
jQuery(function($) {
$(window).scroll(function(){
if($(window).scrollTop() >50) {
$('.x-navbar').addClass("x-navbar-solid");
}else {
$('.x-navbar').removeClass("x-navbar-solid");
}
});
});
Please add it in Theme Options > JS
Your base.php should have the following code.
<?php
// =============================================================================
// VIEWS/FOOTER/BASE.PHP
// -----------------------------------------------------------------------------
// Includes the wp_footer() hook and closes out the .x-site <div>, .x-root
// <div>, <body> and <html> tags.
// =============================================================================
?>
<?php do_action( 'x_before_site_end' ); ?>
</div> <!-- END .x-site -->
<?php do_action( 'x_after_site_end' ); ?>
</div> <!-- END .x-root -->
<?php wp_footer(); ?>
<!-- Calendly badge widget begin -->
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript"></script>
<script type="text/javascript">Calendly.initBadgeWidget({url: 'https://calendly.com/ogm/15min', text: 'Schedule time with me', color: '#00a2ff', branding: true});</script>
<!-- Calendly badge widget end -->
</body>
</html>
If it still not working kindly provide us your wordpress admnin login and ftp login in Secure Note
Thanks