You should remove these lines from your header.php <script language=”javascript” type=”text/javascript” src=”https://wordpress.stackexchange.com/questions/154191/<?php bloginfo(“template_url’); ?>/javascripts/jquery.js”></script> <script language=”javascript” type=”text/javascript” src=”https://wordpress.stackexchange.com/questions/154191/<?php bloginfo(“template_url’); ?>/javascripts/tabber.js”></script> <script language=”javascript” type=”text/javascript” src=”https://wordpress.stackexchange.com/questions/154191/<?php bloginfo(“template_url’); ?>/javascripts/superfish.js”></script> And instead add the following function in your functions php… right at the top. wp_enqueue_script function sg_theme_js(){ wp_enqueue_script( ‘jquery’ ); wp_enqueue_script( ‘tabberjs’, get_template_directory_uri().’/javascripts/tabber.js’, array(‘jquery’), 1.0, true); wp_enqueue_script( ‘superfishjs’, get_template_directory_uri().’/javascripts/superfish.js’, … Read more