Custom Menu Issue
-
I’m using an old theme called Bubbles Squared…no longer supported. ??
Anywho, it didn’t support custom menus so I found an article on google that recommended adding the following to functions.php:
add_action( 'init', 'register_my_menu' ); function register_my_menu() { register_nav_menu( 'primary-menu', __( 'Primary Menu' ) ); }
And I added this to my header.php to display the menu:
<?php wp_nav_menu(); ?>
So my problem is the menu doesn’t drop down. I have a primary tab (Called Media) with 6 Sub-Items. They display on the page instead of a dropdown.
You can see this at:
https://www.northernskiesoutfitters.com/
Any ideas on how to make it a dropdown?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Custom Menu Issue’ is closed to new replies.