TONYK
Newbie
Posts: 1
Registered: 7/27/2003
Member Is Offline
|
| posted on 7/28/2003 at 10:17 AM |
|
|
Menu Initialization Block? "Who Dat"
Greetings I downloaded the Tigra Menu yesterday and have been working my way thru the learing curve on it.
I run into the same problem most of the other folks have run into. Positioning the menu on the webpage. I edited the java script block_top in
menu_tpl.js
Now I have two menus bars on my page.
Any Idea what I am doing wrong. I noted in the Forum responces a statement that I do not understand "Menu Initialization block should be placed
just before" Anywone have a clue what they are referring to?????? Thank You, TonyK.
|
|
|
nik
Posts:
Registered: 1/1/1970
Member Is Offline
|
| posted on 7/29/2003 at 09:40 AM |
|
|
Please, be more specific about code changes you've made. Menu initialization block is a set of JavaScript commands. It actually creates the
menu (each block - one menu) and should be placed before closing tag of the HTML's body. For instance:
<!-- some html -->
<script language="JavaScript">
new menu (MENU_ITEMS, MENU_POS);
</script>
</body>
</html>
|
|
|