Einzelnen Beitrag anzeigen
  #1  
Alt 14.05.08, 12:29
mip|David mip|David ist offline
Forum Newbie
 
Registriert seit: 07.09.07
Alter: 22
Beiträge: 44

Folgendes Navigations Problem


Ich habe ein kleines Navigationsproblem.
Die navigation soll so wie auf screenshot 1 aussehen:
http://pfalzgamer.de/screen1.JPG

So sieht sie bei mir aus:
http://pfalzgamer.de/screen2.JPG

beim RO der subnavigation soll sie die sub-subnavigation öffnen, falls vorhanden.

mein TS sieht so aus:

Typoscript-Code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
#Platzhalter MENU_LINKS ansprechen
MENU_LINKS = HMENU
MENU_LINKS{

wrap = <img src ="fileadmin/images/linie_weiss_01.gif" width="100" height="1"><br>|
special = directory
special.value = 3
entryLevel = 1
1 = GMENU
1.NO = 1
1.NO{
wrap = |<br>
XY = 150,24+[16.h]
backColor = #DCDCDC

                  #Text auf Menü rendern
10 = TEXT
10{
text.field = title
text.listNum = 0
text.listNum.splitChar = _
fontColor = black
fontFile = fileadmin/fonts/verdana.ttf
fontSize = 12
niceText = 0
offset = 14,16
}
15 < .10
15.text.listNum = 1
15.offset = 14, 32

                  #Hilfsebene zur Berechnung der Höhe von Menüpunkten
16 < .10
16.text.case = upper
16.text.listNum = 1
16.fontSize = 22
16.offset = 1000,1000

                  #Weisse Linie zwischen Menüpunkten
20 = IMAGE
20.file = GIFBUILDER
20.file{
XY = 178,1
backColor = white
}
20.offset = 0, 23+[16.h]
}

              #Einen RollOver-Zustand beschrieben
1.RO <.1.NO
1.RO.backColor = #efefef
1.CUR < .1.RO
1.CUR.backColor = #C0C0C0        
}

MENU_SUB = HMENU
MENU_SUB{
special = directory
special.page_id = 3
entryLevel = 2
1 = GMENU
1.NO = 1
1.NO{
wrap = |<br>
XY = 170,24+[16.h]
backColor = #DCDCDC

                  #Text auf Menü rendern
10 = TEXT
10{
text.field = title
text.listNum = 0
text.listNum.splitChar = _
fontColor = black
fontFile = fileadmin/fonts/verdana.ttf
fontSize = 12
niceText = 0
offset = 14,16
}
15 < .10
15.text.listNum = 1
15.offset = 14, 32

                  #Hilfsebene zur Berechnung der Höhe von Menüpunkten
16 < .10
16.text.case = upper
16.text.listNum = 1
16.fontSize = 22
16.offset = 1000,1000

}
              #Einen RollOver-Zustand beschrieben
1.RO <.1.NO
1.RO{
expAll = 1
10.fontColor = #FF6633
15.fontColor = #FF6633
                  #Weisse Linie zwischen Menüpunkten
20 = IMAGE
20.file = GIFBUILDER
20.file{
XY = 178,1
backColor = white
}
20.offset = 0, 23+[16.h]
}
1.CUR < .1.RO
}

MENU_SUBSUB = TMENU
MENU_SUBSUB{

}
Rechts oben sind 2 ineinander verschachtelte div container, nur zur orientierung (MENU_SUB und weiter rechts MENU_SUBSUB).
Leider habe ich keine Ahnung wie ich das machen soll.

Hat jemand vielleicht eine Idee?
Mit Zitat antworten