Red~Ice
02-01-2003, 02:16 PM
how do i make menus.. does anyone knoww the code..
|
Click to See Complete Forum and Search --> : about menu Red~Ice 02-01-2003, 02:16 PM how do i make menus.. does anyone knoww the code.. Zach Elfers 02-01-2003, 02:23 PM There are many different styles for menus. For just a simple one, here is some code: <head> <style type="text/css"> <!-- body { margin:0px; } a { color:#000000; text-decoration:none; width:100%; height:30px; } #menu { width:200px; height:100%; position:absolute; left:0px; top:0px; background-color:#008800; padding:10px; } .menuItem { width:100%; border:1px solid #006600; background-color:#008800; padding:5px; height:30px; text-align:center; } --> </style> </head> <body> <div id="menu"> <div class="menuItem"> <a href="page1.html">Menu 1</a> </div> <div class="menuItem"> <a href="page2.html">Menu 2</a> </div> <div class="menuItem"> <a href="page3.html">Menu 3</a> </div> </div> spinnyscripter 10-19-2003, 01:41 PM All is explained in the readme file in the atached .zip file or you can download it from the folowing address; http://members.lycos.co.uk/twdp/menu.htm and click on the link webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |