How do I get my menu to drop down? CSS & HTML -
i have tried making drop down menu. have made simple ones, cannot seem 1 work now, after adding more complex css. surely missing line of code somewhere, not sure where. know how subitems1,2,3,and 4 drop down item3 in menu? menu code <body> <div id = "horizontalmenu"> <ul class = "fancynav"> <li><a href = "item1.php" class = "homeicon">item1</a></li> <li><a href = "item2.php">item2</a></li> <li><a href= "#">item3</a> <ul> <li><a href = "sub1.php"> subitem1</a></li><br> <li><a href = "sub2.php"> subitem2</a></li><br> <li><a href = "sub3.php"> subitem3</a></li><br> <li><a href = "sub4.php"> subitem4</a></li> </ul> </li> ...