Hallo I have downloaded multilevel menu for my website, but there is one small problem in it! I don't know how display an down.gif arrow in m submenus! Could you download the sample of this menu and to look how to solve this problem? Thx for help!
1) lose the tables for layout, this isn't 1997. 2) lose the scripting for ALL browsers, and just send script (preferably as a behavior file) to IE6/lower... you're using javascript to do CSS' job. 3) ease up on the absurdly undersized and illegible fixed metric (aka px) serif fonts. 4) might help to use URL's that aren't total gibberish in your links. (or is that leftover from some server side script we're not seeing?) 5) <META name=GENERATOR content="MSHTML 8.00.6001.19120"> Well there's your problem... You might want to try using something that makes HTML from THIS century. Try this menu code on for size: http://www.cutcodedown.com/codeExamples/menuDemo/ to add your down arrows, just add a class to the appropriate LI -- something like "hasChildren", pad the side of the anchor you want the arrow on and apply the arrow as a background-image.
I guess you want something like this: To do that, add the following code into all <li> items you want to add an arrow: <span style="float:right;padding:2px 5px 0 0"><img src="/arrow.gif" /></span> HTML: Example: <li><a href="link=Internet">Internet <span style="float:right;padding:2px 5px 0 0"><img src="/arrow.gif" /></span></a><li> HTML: Change src, if arrow.gif is located elsewhere. padding is optional, I added it to for proper alignment.