Check out the Code Here: http://jsfiddle.net/TwCLr/
If you want to see what I'm trying to achieve, click on the link provided above.
I am facing some challenges with positioning and z-index in a horizontal sub-menu layout.
I believe these issues can be resolved using jQuery. Any suggestions or scripts that could help are welcomed.
It's important to note that the menu HTML is generated by WordPress. Changing this would require rewriting the function that calls for the menus.
functions.php
function conceptx_setup() {
register_nav_menu( 'primary', __( 'Primary Menu', 'conceptx' ) );}
add_theme_support( 'menus' );
nav html
<?php wp_nav_menu(); ?>
An ideal solution would not involve modifying the HTML structure. You can view the WordPress-generated structure in the jsfiddle link at the top of this post.
Here is a quick visual representation of how it should work: https://i.sstatic.net/cztL6.gif
If you can offer any assistance, it would be greatly appreciated.