I am trying to create for the first time a mega drop-down menu for a WordPress theme, and I can't manage to order the list-items in categories and sub-categories. I searched the web for wordpress plugins but I couldn't find one that could work and I am not currently able to pay for a complex one.
I don't want divs included inside list-items (that would make the job easier) and I can't manage to display the menu properly. I've searched the web for solutions, and stackoverflow too and couldn't find a fix.
The result should look like the menu presented here: http://www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-jquery-drop-down-mega-menu-widget/
I made a fiddle for you guys to check it out until now.
http://jsfiddle.net/vncatalin/L7Vtd/
nav {
float: right;
margin-top: -7px;
}
nav .menu-left {
background: url('img/menu-left.png') no-repeat;
width: 41px;
height: 43px;
float: left;
}
nav .menu-right {
background: url('img/menu-right.png') no-repeat;
width: 9px;
height: 43px;
float: left;
}
nav .menu-primary-menu-container {
float:left;
border: 1px solid red;
}
nav .menu-primary-menu-container ul a {
font-family: 'Droid Sans', sans-serif;
font-size: 13px;
text-transform: uppercase;
text-decoration: none;
color: #e5e5e5;
font-weight: bold;
}
nav .menu-primary-menu-container ul a:hover {
color: #fff;
}
nav ul li {
display: inline;
float:left;
padding: 12px 2px;
position: relative;
margin-right: 10px;
margin-left: 5px;
text-align: center;
}
nav ul li:hover {
background: rgb(0, 126, 255);
}
nav ul li ul {
border: 1px solid red;
position: absolute;
z-index: 999;
}
nav ul li ul >li {
clear: both;
}
nav ul ul.sub-menu {
position: absolute;
left: -6px;
top: 40px;
width: 312px;
background: black;
}
nav ul ul.sub-menu li {
display: inline-block;
float: none;
margin: 0;
width: 150px;
height: auto;
}
nav ul ul.sub-menu li a
nav ul ul.sub-menu li:hover {
background: rgb(0, 126, 255);
}
nav ul li:hover ul.sub-menu {
display: block;
height: auto;
}