deanpeters
Junior Member
Posts: 3
Registered: 2/28/2003
Member Is Offline
|
| posted on 2/28/2003 at 03:23 AM |
|
|
absolute height, aligned right?
I've read the manual, but it is still unclear to me if I can place a menu 75px down (row) and align it to the right.
Where should I look this up/ find it / can anyone help describe it?
I'm futzing about with using css divisions, but I'm not having much luck going tableless with the Tigra GOLD menu to date ...
|
|
|
nik
Posts:
Registered: 1/1/1970
Member Is Offline
|
| posted on 2/28/2003 at 04:06 PM |
|
|
To move your menu down you should change MENU_POS['block_top'] and to align it to the right you should change MENU_POS['align'] in
file menu_tpl.js.
|
|
|
deanpeters
Junior Member
Posts: 3
Registered: 2/28/2003
Member Is Offline
|
| posted on 3/1/2003 at 03:29 AM |
|
|
I did -- even with Demo0 -- no movement.
var MENU_POS0=[
// Level 0 block configuration
{
'top' : 150,
'align' : 'right',
|
|
|
nik
Posts:
Registered: 1/1/1970
Member Is Offline
|
| posted on 3/7/2003 at 10:30 AM |
|
|
Please, pay attention to your hierarchy declaration: 'block_top' shold be an array, not a scalar. According to the documentation MENU_POS0
declaration should look like:
MENU_POS0 = {
'block_top' : [150, ...], // an array where cells correspond menu levels
'align' : 'right',
.....
}
|
|
|