How should a drop down menu be brought into the center of a page, yet it should ease out to the left after the browser has been minimized. The menu has been made inside a division and it looks like something like this:
The CSS file has been attached.Code:<div id="cssmenu" > <ul> <li><a href="#">Home</a></li> <li><a href="#">Blog</a></li> <li><a href="#">About</a></li> <li class='active has-sub'><a href="#">Services</a> <ul> <li><a href="#">Services</a></li> <li class='has-sub'> <a href="#">Service 1</a> <ul class='has-sub'> <li><a href="#">A Service</a></li> <li><a href="#">Another Service</a></li> </ul> </li> <li><a href="#">Service 2</a></li> </ul> </li> <li><a href="#">Contact</a></li> </ul> </div>



Reply With Quote


Bookmarks