Hello. How can I create fullwidth menu with boxed content ? Like here: https://ctrlv.sk/OPit
This topic has 7 replies, 3 voices, and was last updated 4 years, 8 months ago ago by Crazystar
Hello. How can I create fullwidth menu with boxed content ? Like here: https://ctrlv.sk/OPit
Hello,
Add the below code to Theme Options > Custom CSS
@media only screen and (min-width: 992px) {
.header-main-menu .item-design-mega-menu .nav-sublist-dropdown {
left: 0 !important;
margin: 0 !important;
right: 0 !important;
width: 100% !important;
max-width: 100% !important;
transform: none !important;
}
.header-main-menu .item-design-mega-menu, .header-top, .header-main, .header-bottom, .header-bottom .et_column {
position: static;
}
}
Regards
Its working, but if menu is opened then I can’t click on navigation menu items, its not clickable..
Hello,
Go to Theme Options > Custom CSS find code below
.item-design-mega-menu .nav-sublist-dropdown:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
height: 40px;
bottom: 100%;
}
and change
height: 40px; to height: 20px;
Regards
I added this code with 20px height to custom css, because it wasnt there.Before you sent me different code so I added this code with 20 px height there but same problem.
This is my custom css now:
.item-design-mega-menu .nav-sublist-dropdown:before {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
height: 20px;
bottom: 100%;
}
@media only screen and (min-width: 992px) {
.header-main-menu .item-design-mega-menu .nav-sublist-dropdown {
left: 0 !important;
margin: 0 !important;
right: 0 !important;
width: 100% !important;
max-width: 100% !important;
transform: none !important;
}
.header-main-menu .item-design-mega-menu, .header-top, .header-main, .header-bottom, .header-bottom .et_column {
position: static;
}
}
Hello,
Delete this code http://prntscr.com/11d92p7 , you need to find this http://prntscr.com/11d93c2 and change it (Theme Options > Theme custom CSS (not Additional custom CSS) > Global custom CSS). If you can’t find it, provide us with temporary wp-admin access.
Regards
Its working, thank you guys. I’m closing this topic.
The issue related to '‘Mega menu – fullwidth’' has been successfully resolved, and the topic is now closed for further responses