crazytopu
Junior Member
Posts: 4
Registered: 8/28/2004
Location: universe
Member Is Offline
|
| posted on 8/28/2004 at 04:32 PM |
|
|
Hey Can I do this? Pls help
Hello, I am using tigra menu as the left navigation for my site. To indicate that certain items have sub items I used an ">>" arrow
with the top level items. But I am not content with this sign anymore. I would like to use an arrow image istead.
Can anybody tell me if it is possible and if so how can i do it?
Thanks.
Topu
|
|
|
btreehouse
Member
Posts: 15
Registered: 2/23/2004
Member Is Offline
|
| posted on 9/6/2004 at 12:12 PM |
|
|
well you need an image of an arrow first.
Tigra menus support html coding within the menu_items.js file
So for example: a menu that says "browser list and then lists them in the sub menu might look like this.
var MENU_ITEMS = [
['browser list', null, null,
['Internet Explorer 5+'],
['Netscape 6.0+'],
['Mozilla 0.9+'],
['AOL 5+'],
['Opera 5+']
],
];
Then adding the arrow image is just a matter of adding the html coding (within the ' marks) so it looks something like:
var MENU_ITEMS = [
['browser list <img src="arrow.gif">', null, null,
['Internet Explorer 5+'],
['Netscape 6.0+'],
['Mozilla 0.9+'],
['AOL 5+'],
['Opera 5+']
],
];
That is my best guess. I am working with Tigra version 2
|
|
|
|