Multicolumn feature doesn't work for me
- hadensandor
- Topic Author
- Offline
- Junior Member
Less
More
- Posts: 26
- Thank you received: 0
13 years 2 months ago #342
by hadensandor
Replied by hadensandor on topic Re: Multicolumn feature doesn't work for me
I don't understand the situation now ...
Can you help me? Is it worthy to wait?
Shall I keep the menu in this state?
/Unfortunatelly after doing the changes suggested now the menu is "unusuable"/
I would greatly appreciate your help
Can you help me? Is it worthy to wait?
Shall I keep the menu in this state?
/Unfortunatelly after doing the changes suggested now the menu is "unusuable"/
I would greatly appreciate your help
Please Log in or Create an account to join the conversation.
13 years 2 months ago - 13 years 2 months ago #343
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic Re: Multicolumn feature doesn't work for me
hereafter an extract of the css generated on your website :
I don't know which files you are modifying on which website but what I see is not good.
Code:
#ja-mainnav li ul { /* second-level lists */
position: absolute;
width: 202px;
/*
* Using left instead of display to hide menus because display: none isn't
* read by screen readers
*/
left: -999em;
}
I don't know which files you are modifying on which website but what I see is not good.
Joomlack Webmaster and Developer
Last edit: 13 years 2 months ago by ced1870.
Please Log in or Create an account to join the conversation.
13 years 2 months ago #344
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic Re: Multicolumn feature doesn't work for me
Now I can see it. A cache issue. Have you the cache activated on your website ??
I see the issue, the problem is that the ja-purity is very complex and has its own dropdown menu css which are not compatible with the one of maximenu.
Try a default maximenu theme to see if it works
I see the issue, the problem is that the ja-purity is very complex and has its own dropdown menu css which are not compatible with the one of maximenu.
Try a default maximenu theme to see if it works
Joomlack Webmaster and Developer
Please Log in or Create an account to join the conversation.
- hadensandor
- Topic Author
- Offline
- Junior Member
Less
More
- Posts: 26
- Thank you received: 0
13 years 2 months ago #345
by hadensandor
Replied by hadensandor on topic Re: Multicolumn feature doesn't work for me
In the plugins the "System-Cache" is turned off ...
But in the Tools > Clear Cache I found MaxiMenuCK cache or something like this.
So I cleared this from cache.
But in the Tools > Clear Cache I found MaxiMenuCK cache or something like this.
So I cleared this from cache.
Please Log in or Create an account to join the conversation.
- hadensandor
- Topic Author
- Offline
- Junior Member
Less
More
- Posts: 26
- Thank you received: 0
13 years 2 months ago #346
by hadensandor
Replied by hadensandor on topic Re: Multicolumn feature doesn't work for me
Default CSS module of MaximenuCK is working, but "not nice"
The long menu-titles are flowing out of the fixed-height "boxes" and are covering each other.
See for example the following menus:
Felszín alatti víz > Kézi vízszintmérő műszerek
Felszíni Víz > Mélység-integráló víz- és lebegtetett hordalék mintavevők
etc.
But also every other menus which are longer than 1 row, are "ugly"
Can the height of the menu "boxes" set to automatic depending from its content?
The long menu-titles are flowing out of the fixed-height "boxes" and are covering each other.
See for example the following menus:
Felszín alatti víz > Kézi vízszintmérő műszerek
Felszíni Víz > Mélység-integráló víz- és lebegtetett hordalék mintavevők
etc.
But also every other menus which are longer than 1 row, are "ugly"
Can the height of the menu "boxes" set to automatic depending from its content?
Please Log in or Create an account to join the conversation.
13 years 2 months ago #347
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic Re: Multicolumn feature doesn't work for me
yes what happen now is that the theme set a height for the elements and as yours are very long they overflow on multiple line.
to fix this, go in the maximenuH_CK.PHP file located in the module and change the height properties to min-height :
Line 41 :
Line 128 :
and this should work
to fix this, go in the maximenuH_CK.PHP file located in the module and change the height properties to min-height :
Line 41 :
Code:
div#<?php echo $id; ?> ul.maximenuCK li a.maximenuCK,
div#<?php echo $id; ?> ul.maximenuCK li span.separator {
text-decoration : none;
text-indent : 2px;
min-height : 27px;
outline : none;
background : none;
border : none;
padding : 0;
cursor : pointer;
color : #ccc;
}
Line 128 :
Code:
div#<?php echo $id; ?> span.titreCK {
color : #888;
/*display : block;*/
text-transform : none;
font-weight : normal;
font-size : 14px;
line-height : 18px;
text-decoration : none;
min-height : 17px;
float : none !important;
float : left;
}
and this should work
Joomlack Webmaster and Developer
The following user(s) said Thank You: hadensandor
Please Log in or Create an account to join the conversation.
Time to create page: 0.765 seconds