Comments Off
Comments Off

A simple drill down menu for web, ipad, iphone Create a .html file and paste the below html code in the body location HTML CODE <body> <div id=’box’> <div id=”menu”> <div class=”nav”>DRILL DOWN MENU</div> </div> <div id=”button” class=’test’>CLICK ME</div> <br class=”cb” /> </div> </body> In the .html file copy the total javascript code and place […]

08
Mar
05
Mar
stored in: CSS and tagged:

Try with the below code HTML <div id=”navcontainer”> <ul id=”navlist”> <li id=”active”><a href=”#” id=”current”>Item one</a></li> <li><a href=”#”>Item two</a></li> <li><a href=”#”>Item three</a></li> <li><a href=”#”>Item four</a></li> <li><a href=”#”>Item five</a></li> </ul> </div> CSS #navlist { color: white; background: #17a; border-bottom: 0.2em solid #17a; border-right: 0.2em solid #17a; padding: 0 1px; margin-left: 0; width: 12em; font: normal 0.8em Verdana, […]

03
Mar