wanger52
Newbie
Posts: 1
Registered: 1/21/2004
Member Is Offline
|
| posted on 2/22/2004 at 04:01 AM |
|
|
Menu Gold
How do you change the mode on the program to Menu Gold. On, the download I have that option is grayed out? And to answer the obvious question, yes I
purchased Menu Gold.
|
|
|
Bnorland
Junior Member
Posts: 2
Registered: 6/2/2004
Location: Sweden
Member Is Offline
|
| posted on 6/3/2004 at 08:36 PM |
|
|
I have the same problem with Menu Pro (purchaced).
|
|
|
RM
Super Administrator
Posts: 24
Registered: 12/16/2003
Member Is Offline
|
| posted on 6/21/2004 at 10:03 AM |
|
|
Unfortunatly,Tigra Menu Online Builder can't be used for Tigra Menu Gold and Tigra Menu PRO
|
|
|
RM
Super Administrator
Posts: 24
Registered: 12/16/2003
Member Is Offline
|
| posted on 6/21/2004 at 10:06 AM |
|
|
Tigra Menu Builder can import vertical menu at root level, but it shows as horizontal and the export produces an horizontal menu as well.
You should make manual corrections to do the vertical menu at root level. Please, do the following sequence:
Make export procedure in the program.
Open menu_tpl.js exported file with a text editor like notepad.
The head of the your file will looks like:
var MENU_POS = [
{
// Vertical Offset between adjacent levels in pixels
'block_top' : 0,
// Horizontal Offset between adjacent levels in pixels
'block_left' : 65,
'top': 0,
'left': 119,
// Item's width in pixels
'width' : 150,
// Item's height in pixels
'height' : 25,
...
Change 'left' value to equal 0
Change 'top'value to about equal 'height' value
The head of the corrected file will looks like:
var MENU_POS = [
{
// Vertical Offset between adjacent levels in pixels
'block_top' : 0,
// Horizontal Offset between adjacent levels in pixels
'block_left' : 65,
'top': 25,
'left': 0,
// Item's width in pixels
'width' : 150,
// Item's height in pixels
'height' : 25,
...
Check you changes in a Web-browser.
|
|
|