We have a navigation menu list of links in the footer, but when you click on the links they open up in a new tab. Wondering if there is a way to change the way the footer menu links are opening so that it opens _self same page instead of _blank? Can you please let us know where we can change this?
We have a navigation menu list of links in the footer, but when you click on the links they open up in a new tab. Wondering if there is a way to change the way the footer menu links are opening so that it opens _self same page instead of _blank? Can you please let us know where we can change this?
thank you so much.
Hi there,
Use the following Custom JS code.
<script type="text/javascript"> jQuery( document ).ready(function() { jQuery('#footer-outer .social li a').attr('target', '_self'); }); </script>You can add the Custom JS code in here :
Thanks
Thank you so much that helped me resolve the menu issue by changing .social to .menu
Thanks again.