- Posts: 5
- Thank you received: 0
Kunena 6.0.9.1 Released
The Kunena team has announce the arrival of Kunena 6.0.9.1 [K 6.0.9.1] which is now available for download as a native Joomla extension for J! 4.2.x. This version addresses most of the issues that were discovered in K 6.0 and issues discovered during the development stages of K 6.0.
Idea [Gelöst]Kunena drängt Fisheyemenu(hornav) n. links
- low-deluxe
-
Topic Author
- Offline
- New Member
Erstmal ein ganz großes Lob an das Kunena Entwicklerteam!
Tolle Arbeit habt ihr da hingelegt!
Leider habe ich bei der Implementierung ein Problem. Wenn ich das Forum aufrufe, wird das Fisheyemenu, welches ich in der nav leiste (hornav) installiert habe ganz nach links verschoben.
Man sieht dann nur noch einen Teil von dem ganz rechten Bild.
Das tritt aber nur bei Kunena auf, sonst funktioniert es ganz normal.
Als template benutze ich JA_Purity.
Weiß da jemand rat?
Grüße
Low-deluxe
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- low-deluxe
-
Topic Author
- Offline
- New Member
- Posts: 5
- Thank you received: 0
bar-racuda.de/forum/index.php?option=com_kunena
und normal sieht mans unter
bar-racuda.de/forum/
Ich habe kunena noch nicht integriert weil das halt nicht funktioniert, deshalb kein menu link

Grüße
low-deluxe
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- low-deluxe
-
Topic Author
- Offline
- New Member
- Posts: 5
- Thank you received: 0
hier ist das zusammen. Einen ganz kleinen teil von dem fisheyemenu sieht man ganz links. man kann auch draufklicken. dann kommt man halt zu kontakt.
Aber danke schonmal fürs drauf gucken.
grüße
low-deluxe
Please Log in or Create an account to join the conversation.
Ich hab es halbwegs hinbekommen, allerdings nur für Firefox, im IE verrutscht es dadurch (man könnte das mit einem IE hack auch ausschalten, also dass nur FF die Anweisung liest) ...
Datei: menu.css (modules/mod_fisheye_menu_camp26/fisheye_menu) hier die Klasse .fisheyeContainter mit dem unten stehenden ersetzen (rot markiert), die Mittigkeit kann hier mit der Prozentzahl von width angepasst werden (alles sehr merkwürdig)
.fisheyeContainter {
height: 50px;
left: -76px;
position: absolute;
top: 40px;
}
.fisheyeContainter {
float:right;
height: 50px;
margin-left: auto;
margin-right:auto;
text-align: center;
top: 40px;
width: 60%;
}
... ABER beim Betrachten im Internet Explorer ist mir aufgefallen, dass die Originalfassung nicht gut aussieht, schau es dir einmal an (Screenshot im Anhang) :huh: Also langer Rede kurzer Sinn, um das zu fixen müsste ich total lange suchen, sorry, dafür fehlt mir die Zeit.
Wenn du dich selbst etwas mit CSS auskennst, nutz mal den Firebug und fang an zu grübeln

Please Log in or Create an account to join the conversation.
- low-deluxe
-
Topic Author
- Offline
- New Member
- Posts: 5
- Thank you received: 0
Vielleicht werd ich auch einfach so ein dropdown menu versuchen.
Ist vll einfacher

Danke für die Hilfe!
Please Log in or Create an account to join the conversation.
Im Ja-Purity müsstest du in der ja-sosdmenu.css (/templates/ja_purity/css) eine feste Höhe eintragen:
#ja-mainnavwrap {
background:#444444 none repeat scroll 0 0;
border-top:1px solid #666666;
height:70px;
}
und in der iFishEye.css (modules/mod_aracnet_fisheye/assets) dieselbe Höhe für table und div
#iFishEye > table {
margin: auto;
height: 70px;
}
#iFishEye > div {
margin: auto;
height: 70px;
}
Und die Farbe unterhalb der buttons (gifs) änderst du, in dem du noch eine color-definition einfügst:
.iFishEyeCaption {
font-variant:small-caps;
font-weight:bold;
color:#ffffff;
}
Die Höhe kannst du natürlich einstellen, wie du willst, wichtig ist, dieselbe Größe dreimal gleich zu vergeben.
Die Einstellungen für das Modul selbst, siehe Screenshot:
Please Log in or Create an account to join the conversation.