Hi,
Please can you tell me how I can make my menu take up the entire screen when the user hovers over?
I don’t want to see any of the page when the user is browsing the menu.
Many thanks,
Hey hazelallturf,
Can you please show us an example of what you mean, so we can see if it is something easy and quick where we can help you?
Best regards,
Basilis
Hi Basilis,
The best example I can find is http://www.diy.com
When you hover on one of their menus the full screen is taken to display.
Look forward to your help.
Thanks
Hi,
Thank you for the update. Try to adjust the height of the mega menu container base on the height of the browser view port.
#menu-item-22 .avia_mega_div {
height: 80vh;
}
Best regards,
Ismael
Hi Ismael,
That worked great. Can I also do the same to the width?
Many thanks,
Luke
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#top #header.av_minimal_header .avia_mega_div {
width: 100vw!important;
transform: translateX(-40px);
height: calc(100vh - 80px);
}
Best regards,
Vinay