DmMaximus
06-21-2005, 05:55 AM
i am trying to create a webiste and im need help on creating amenu bar if possible!
Please be patient..and be very detailed!
Please be patient..and be very detailed!
|
View Full Version : Im New to this so please be patient! DmMaximus 06-21-2005, 05:55 AM i am trying to create a webiste and im need help on creating amenu bar if possible! Please be patient..and be very detailed! MaGiCSuN 06-21-2005, 12:19 PM what kind of menu? any specific language? colors? style? we really need more info :) Love, Mirna firewall1 06-21-2005, 12:37 PM well i found a really good menu on a different site its hard to explain but i guarantee yull like it put this in the head <style type="text/css"> <!-- .menu {font-family:Arial; font-weight:bold} .menu a{ text-decoration:none; color:black; } --> </style> <script language="javascript"> <!-- /* Cool Table Menu By Clarence Eldefors (http://www.freebox.com/cereweb) with modifications from javascriptkit.com Visit http://javascriptkit.com for this and over 400+ other scripts */ function movein(which,html){ which.style.background='coral' if (document.getElementById) document.getElementById("boxdescription").innerHTML=html else boxdescription.innerHTML=html } function moveout(which){ which.style.background='bisque' if (document.getElementById) document.getElementById("boxdescription").innerHTML=' ' else boxdescription.innerHTML=' ' } //--> </script> put this in the body but i dont fully understand this code so bear with me and try not to ask questions <table bgcolor="black" border="1" bordercolor="ivory" cellpadding="2" cellspacing="0"> <tr> <td class="menu" bordercolor="black" id="choice1" style="background-color:bisque; cursor:hand" onmouseover="movein(this,'The #1 DHTML site online')" onmouseout="moveout(this)""> <a href="http://www.dynamicdrive.com">Dynamic Drive</a></td></tr> <td class="menu" bordercolor="black" id="choice2" style="background-color:bisque; cursor:hand" onmouseover="movein(this,'Free Java applets')" onmouseout="moveout(this)"> <a href="http://freewarejava.com">Freewarejava.com</a></td></tr> <td class="menu" bordercolor="black" id="choice3" style="background-color:bisque; cursor:hand" onmouseover="movein(this,'Free webmaster resources')" onmouseout="moveout(this)"><a href="http://www.freebox.com/cereweb/">Cerebus Web Resources</a></td></tr> <td class="menu" bordercolor="black" id="choice4" style="background-color:bisque; cursor:hand" onmouseover="movein(this,'Resources to build your site')" onmouseout="moveout(this)"><a href="http://www.sitepoint.com">SitePoint.com</a></td></tr> <tr> <td bordercolor="black" bgcolor="ivory" height="18"><font id="boxdescription" face="Verdana" size="2"></font></td></tr> </table> <p><font face="arial" size="-2">This free script provided by</font><br> <font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript Kit</a></font></p> well thats wut im contributing Sheila 06-21-2005, 01:51 PM You could also try these sites: http://www.dynamicdrive.com/dynamicindex1/index.html http://www.dhtmlcentral.com/projects/coolmenus/ http://javascript.internet.com/navigation/ |