on my site my hanburger menu just stopped working and no longer opens, it also adds an # to the URL when you click on the mobile version of it?
Not sure why it just all the sudden stopped working but I tried disabling all the plugins and turned them on one by one.
<div class="fusion-header-sticky-height"></div>
<div class="fusion-header">
<div class="fusion-row">
<?php avada_logo(); ?>
<?php avada_main_menu(); ?>
<div class="logo_text"><h3 style="font-size:11px !important;color:#1592CE !important;"><a style="font-size:11px !important;color:#1592CE !important;" href="https://rocketpilots.com">Digital Marketing</a></h3></div>
Remove this code from inside the <script>
tag:
jQuery(document).ready(function () {
jQuery('p strong')[0].nextSibling.remove('.');
});
This is causing the error seen in the console; whatever it's attempting to target doesn't exist in the document. This snippet also has a jQuery(document).ready(){}
contained inside of another one, which is redundant.