This worked for me, Thank you! does anyone know how to change the black background on the hamburger menu? or just change the text on that menu to white? I had to change all our text colors for those menus to be visible.
-
This reply was modified 8 years, 10 months ago by bambicake.
Twinpictures,
Thank you for your quick response. I got it! I added this to the end of functions.php:
if (!is_admin()) add_action(“wp_enqueue_scripts”, “my_jquery_enqueue”, 11);
function my_jquery_enqueue() {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, “http” . ($_SERVER[‘SERVER_PORT’] == 443 ? “s” : “”) . “://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js”, false, null);
wp_enqueue_script(‘jquery’);
}
Thank you!