Questions tagged [megamenu]

Megamenu is a dropdown plugin used similar to the traditional style dropdown menu built to enhance usability and address some drawbacks such as the amount of clicking, navigating and researching is reduced.

295 questions
1
vote
6 answers

jQuery Mega Menu Flicker Issue

I wonder if anyone might be able to shed some light on a problem I'm having... I have used a jQuery Mega Menu script for the below website: http://www.furnituremind.co.uk/ I found the script from the below…
1
vote
1 answer

IE7 z-Index Issue in jQuery Megamenu

I am coding this MegaMenu using jQuery. Here's the URL: http://h1.servy.net/sgtlmm/ It's working fine in all browsers but only in IE7 when hovered over menu items like "Latest" or "Personal" you can see that the megadropdown is showing over the…
Kunal
  • 1,440
  • 4
  • 14
  • 37
1
vote
1 answer

Mega menu in flutter web

is there any way I could add a mega menu in flutter? I want something like in https://www.headphonezone.in/ 's appbar, but I couldn't find a package that fits. Are there any packages like this or is it possible to write a custom menu like this?
1
vote
0 answers

Mega Menu hover event triggered "accidentally"

I would like to fix my mega menu that I builded a while ago. To build it i used pure css, coz I dont know JS. I was able to find and solve almost all problems with this menu, even on mobile or tablets, but there is still one annoying problem that I…
Jakub
  • 11
  • 1
1
vote
1 answer

Loop through dropdown menu items to add class to next sibling in vanilla JS

I am learning JavaScript and am trying to wrap my head around creating a nav megamenu. Basically, each button has a div after it that contains the megamenu content. Hovering OR clicking on the button adds a class to the dropdown (I could also use a…
pas_oui
  • 87
  • 1
  • 9
1
vote
0 answers

Max megamenu custom widget with ACF fields not retrieving any data in secondary language WPML

I have a problem when retrieving acf fields added for a widget. I will explain the situation. I am using MaxMegamenu plugin for implementing megamenu, ACF pro for custom fields and WPML for site translatiom. Primary language is Deutsch and English…
1
vote
0 answers

How to remove "Hover" in dropdown mega menu

I have an dropdown mega menu.It works fine as per our requirment.I would like to know how to open dropdown menu when I click on Menu instead of "hover".Please check the below code and advise how to do this.
Ismail
  • 23
  • 5
1
vote
0 answers

Rendering new row every 5th column for mega menu Shopify Liquid

I am currently working on adding a mega menu for my website. The theme I am using is Warehouse. It has a built-in mega menu option however it does not allow me to create more than one row of categories. As of right now, I have 1 row with 10 columns…
RC1
  • 11
  • 1
1
vote
0 answers

Mega menu (CSS only) hover not working correctly

I'm trying to develop a mega menu for my Wordpress theme, but unfortunately I can't manage to make it look as wanted. See code and output here: #main-navigation { position: absolute; width:100%; background: #fff; box-shadow: 0px…
Seb Au
  • 53
  • 3
1
vote
1 answer

How to force a bootstrap dropdown to position to another element

I'm building a mega-menu using Bootstrap 4 dropdowns. The containers are not fluid. How can I force each dropdown to be positioned and styled to take the entire width of the container? Not relative to the position of the link/button that triggered…
Dort
  • 13
  • 4
1
vote
1 answer

Mega Menu without Plugin (WordPress) (code is ready but doesn't work)

I'm asking for help. This is my header structure: >
Matheus
  • 21
  • 1
  • 7
1
vote
0 answers

Megamenu Design Positioning Issue Only CSS

I am Using React whether I Required to design a Custom Megamenu but the issue is, it is inside An Wrapper of Unordered List and it is taking the relative position of any List Item. Here "Shop By Category" is A Div and the Links As Unordered List's…
1
vote
2 answers

Keep a mega-menu visible until entering another anchor using jQuery

I have a menu where I would like a sub-menu to appear as long as the user is in that menu; Much like you would find in a mega-menu. I'm using jQuery to select the elements. This is the markup structure: As you can see each
  • i.e.…
  • Antonio Pavicevac-Ortiz
    • 7,239
    • 17
    • 68
    • 141
    1
    vote
    1 answer

    I want submenu should open on click event

    I am using bootstrap mega menu. On hover it opens sub menu but sometime it takes click event also and sub menu got stuck. In my javascript there is not mention any click event just have hover code. $(document).ready(function() { …
    1
    vote
    1 answer

    Dropdown menu - slideToggle challenge

    Following is my code $(document).ready(function(){ $('.submenu').hide(); $('.menu').click(function(event){ event.preventDefault(); $(this).children('.submenu').slideToggle(1000); event.stopPropagation(); }); }); li, body,…
    jeff
    • 910
    • 2
    • 6
    • 25
    1 2
    3
    19 20