You will need to do something like this:
<div class="menu"> <ul> <li class="list_item"> <a href="#">Home</a> <ul class="submenu"> <li class="sub_list_item"><a href="#">Home</a></li> <li class="sub_list_item"><a href="#">Home</a></li> <li class="sub_list_item"><a href="#">Home</a></li> </ul> </li> </ul> </div>
This will be the basic structure for a single menu item that has 3 subscription items. I have not tested this code, but here is a bit of CSS styling to start with.
ul.submenu { display:none; } ul.submenu:hover{ display:block; } ul.submenu li.sub_list_item { width:100px; background:blue; color:#fff; line-height:30px; height:30px }
This should be enough to start with you. Good luck.
source share