open module in menu
2 years 8 months ago #65467
by ernst
Replied by ernst on topic open module in menu
I sent, did you receive it?
Please Log in or Create an account to join the conversation.
2 years 8 months ago #65486
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic open module in menu
ok ... I have checked
BUT, this is NOT related to Maximenu CK itself. What you missed to tell me is that you totally manage this by using some custom css
I found that you use :
to make the items visible on hover
the problem is the order, when you have an active item (lets say item 2 on 4), it will be shown
when you over item 1 : it is shown (from a programmatical point of view) but you don't see it : the item 2 is already shown because active and is OVER the item 1
when you over item 3 + 4 : it is shown and visible because over the item 2
do you understand ??
you can try to fix this by using this css code to add to the existing
it will target all active items that are next to the hovered item and hide it. If no item is hovered, the active item is still shown
PS :not sure if you have seen that there are some features in maximenu to do that :
www.joomlack.fr/en/documentation/maximen...a-megamenu-with-tabs
BUT, this is NOT related to Maximenu CK itself. What you missed to tell me is that you totally manage this by using some custom css
I found that you use :
Code:
.hlavni li.maximenuck.maximenuckmodule.level3 {
/* left: 372px !important; */
position: absolute !important;
display: none !important;
z-index: 99999 !important;
background-color: white !important;
}
.hlavni li.maximenuck.nodropdown.parent.level2:hover li.maximenuck.maximenuckmodule.level3, .hlavni li.maximenuck.nodropdown.parent.current.active.level2 li.maximenuck.maximenuckmodule.level3 {
display: inherit !important;
}
the problem is the order, when you have an active item (lets say item 2 on 4), it will be shown
when you over item 1 : it is shown (from a programmatical point of view) but you don't see it : the item 2 is already shown because active and is OVER the item 1
when you over item 3 + 4 : it is shown and visible because over the item 2
do you understand ??
you can try to fix this by using this css code to add to the existing
Code:
.hlavni li.maximenuck.nodropdown.parent.level2:hover ~ .active li.maximenuck.maximenuckmodule.level3 {
display: none !important;
}
PS :not sure if you have seen that there are some features in maximenu to do that :
www.joomlack.fr/en/documentation/maximen...a-megamenu-with-tabs
Joomlack Webmaster and Developer
The following user(s) said Thank You: ernst
Please Log in or Create an account to join the conversation.
2 years 8 months ago #65492
by ernst
Replied by ernst on topic open module in menu
Thanks a lot for your help.
I am exchanging my old broken PC for a new one
I'll try it tomorrow and let you know
I am exchanging my old broken PC for a new one

I'll try it tomorrow and let you know
Please Log in or Create an account to join the conversation.
2 years 8 months ago #65515
by ernst
Replied by ernst on topic open module in menu
it works correctly
thank you very much for your help
thank you very much for your help
Please Log in or Create an account to join the conversation.
Time to create page: 0.217 seconds