Hi all... I just want to ask if you know a horizontal menu similar to the image that I have attached. Thanks in advance Regards.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>MENU</title> <style> body { font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif; padding: 20px 50px 150px; font-size: 13px; text-align: center; background: #fff; } ul { text-align: left; display: inline; margin: 0; padding: 10px 4px 12px 0; list-style: none; -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); } ul li { font: bold 12px/18px sans-serif; display: inline-block; margin-right: -4px; position: relative; padding: 8px 12px; background: #fff; cursor: pointer; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -ms-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } ul li:hover { color: #5F8FF9; } ul li ul { padding: 0; position: absolute; top: 36px; left: 0; width: 150px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; display: none; opacity: 0; visibility: hidden; -webkit-transiton: opacity 0.2s; -moz-transition: opacity 0.2s; -ms-transition: opacity 0.2s; -o-transition: opacity 0.2s; -transition: opacity 0.2s; } ul li ul li { border:1px solid #fff; background: #5F8FF9; display: block; color: #fff; text-shadow: 0 -1px 0 #000; } ul li ul li:hover { background: #2760DE; } ul li:hover ul { color:#fff; display: block; opacity: 1; visibility: visible; } </style> </head> <body> <ul><li>Home</li> <li>About US</li> <li> Services <ul> <li>Web Design</li> <li>Web Development</li> <li>Illustrations</li> </ul> </li> <li>Blog</li> <li>Contact US</li> </ul> </body> </html> HTML:
looks like the superfish menu, but y don't you try cssmenumaker.com/ it has all the menu you are looking for.. cheers