Hi, I'm having an issue with the mega menu, basically when the site loads the mega menu is expanded until I hover over it for a while and then it goes away. Code is as follows:
<nav id="primary-menu">
<ul>
<li class="<check if="{{ @thepage=='home' }}"><true>current</true></check>" style="margin-left: 0px !important; margin-right: 0px !important;"><a href="/"><div><i class="icon-home" style="margin-right: 0px !important;"></i></div></a>
</li>
<li class="<check if="{{ @thepage=='aboutus' }}"><true>current</true></check>"><a href="/about-us"><div>About Us</div></a>
</li>
<li class="mega-menu<check if="{{ @thepage=='quizzes' }}"><true> current</true></check>"><a href="#"><div>Our Quizzes</div></a>
<div class="mega-menu-content style-2 clearfix">
{{@MENU | raw}}
</div>
</li>
<li class="<check if="{{ @thepage=='events' }}"><true>current</true></check>"><a href="/quiz-nights"><div>Coming Up</div></a>
</li>
<li class="<check if="{{ @thepage=='yourquiz' }}"><true>current</true></check>"><a href="/your-quiz"><div>Your Quiz</div></a>
</li>
<li class="<check if="{{ @thepage=='gallery' }}"><true>current</true></check>"><a href="/gallery"><div>Gallery</div></a>
</li>
<li class="<check if="{{ @thepage=='contactus' }}"><true>current</true></check>"><a href="/contact-us"><div>Contact</div></a>
</li>
</ul>
</nav>Any ideas?
