Page 1 of 1

ick_overlay_02 change in menu possible?

Posted: Sun Oct 25, 2020 6:57 pm
by roze
I use the Ikc_overlay_02 template in a personal website on my Synology.

When the L4 items become numererous I prefer to see the L1-L3 in the menu and L4 in a submenu.\

Is that possible?
menu-2.jpg

Re: lck_overlay_02 change in menu possible?

Posted: Mon Oct 26, 2020 11:47 am
by lck
Is it enough for you if the menulevel4 is shown at hover?

When yes, then add here to lck_overlay.css line ~ 174 before "Responsive Style"

Code: Select all

.overlay .menu .menulevel4 {
	max-height: 0;
	opacity: 0;
	transition: all 0.3s ease;
	visibility: hidden;
}
.overlay .menu .menulevel3 > li:focus .menulevel4,
.overlay .menu .menulevel3 > li:hover .menulevel4,
.overlay .menu .menulevel3 > li:active .menulevel4 {
	max-height: 1000px;
	opacity: 1;
	transition: all 0.5s ease 0.1s;
	visibility: visible;
}

/* ************************* RESPONSIVE STYLE */
BTW: The template is called lck_overlay_02 not ick_overlay_02 ;)

Re: ick_overlay_02 change in menu possible?

Posted: Sat Oct 31, 2020 9:05 am
by roze
Thanks!

I’ll gona yry it