-
-
Hello,
I am facing some minor issues with the theme. I will post images/links in a private reply after this post.
1. Megamenu hovering – The megamenu works, but it seems a little fiddly. The megamenu disappears as soon as the mouse cursor leaves the top-level menu item area. The only way to keep the megamenu visible is to move the mouse directly down, and then across to the left in order to reach a link in the megamenu. Maybe we can delay when the megamenu dissapears? Also, is there a way to move this menu slightly to the right? (I’ll provide image in a private reply)
2. Video overflows on blog post – on a blog post, if you embed a video (I’ve only tried with Youtube), the video overflows out of the blog post container. (I’ll provide link in a private reply)
3. Header background on blog post – I’ve set the navigation header background colour to black with white font & logo. However, when viewing a blog post, the header does not have a black background colour anymore. I’ve tried setting both Light Version Header and Dark Version Header in the page options. (I’ll provide link in a private reply)
4. Mobile header background colour – When viewing the site on mobile, the header has a white background colour with white logo – making it impossible to see the logo. The mobile header is meant to have a black background colour. (I’ll provide image in a private reply)
-
-
Hello,
1-Please add this code into your custom css box:
.background--dark nav .menu > li > a {height: 50px;}
2-Add this code:
iframe { width: 820px !important;}
3-Add this code:
.single header#header { background-color: rgba(28,28,28,0.95);}
4-The header is set as transparent, so if the content background is white, so will be the header too. If you set a background image or color at the pages then you won’t have this issue.
Let us know.
Best regards!
-
Hello
Thank you for your response.
1. That code doesn’t seem to work. The problem I’m having there is that the megamenu disappears too quickly if you want to reach the links on the far left. Is there a way we can delay when the menu disappears?
2. Solved using some CSS:
.blog-article iframe { width: 820px; height: 461px; }
3. Solved. Your code works, thank you.
4. Solved – I’ve done a CSS workaround by using:
@media (max-width: 979px) { .header_wrapper { background: #1c1c1c !important; } .background--dark header#header .header_tools * { color: #FFF; } .background--dark .mobile_small_menu { color: #FFF !important; } .mobile_small_menu.open::before, .mobile_small_menu.close::before { color: #FFF !important; } }
-
Hello,
Can you please be more specific? The menu will show as long as there is a mouse hovering on it. I tested this on your site, but the menu doe snot disappear as long as i have the mouse on the sub-menu items.
Let us know.best regards!
-
Hello,
It’s not really a “bug”, but rather a small usability annoyance. Yes, the menu does stay visible as long as you are hovering over the sub items, etc.
The problem is that if a user wanted to reach a link on the far left, they will move their mouse along the shortest possible route (i.e. straight from ‘Products’ to one of the links on the left side – see this diagram, indicated by red line). This will cause the menu to disappear.
Although I understand this is just how the menu was designed. The only possible workarounds I can think of are that if we could move the menu over to the right slightly OR delay when the menu disappears. Would either of those be possible?
-
Hello,
If you want to move up the mega-menu then add this code into your custom css box:
nav .codeless_custom_menu_mega_menu {top: 82% !important;}
Edit the value to your wish.
Sorry but delaying the menu appearance requires editing that are not included in this support.Best regards!
-
Okay thank you for your help.
I’ve managed to figure out a workaround by using the following code:
nav .codeless_custom_menu_mega_menu:before { content: ""; display: block; background: transparent; width: 100%; height: 50px; position: absolute; top: -35px; opacity: 0; } nav .codeless_custom_menu_mega_menu { left: -204%; } nav #menu-item-73:hover:before { content: ""; background: transparent; height: 100%; width: 114%; display: block; position: absolute; left: -10px; opacity: 0; }
-
Hello,
Glad to know you found a solution to this. Thank you for sharing it.
Best regards!
-
You must be logged in to reply to this topic.