Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8005989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:21:58+00:00 2026-06-04T17:21:58+00:00

I have this HTML code : <ul class=navigation-links> <li class=link-item> <img src=images/new-menu/menu-item_04.png width=150 height=41

  • 0

I have this HTML code :

<ul class="navigation-links">
    <li class="link-item">
        <img src="images/new-menu/menu-item_04.png" width="150" height="41" alt="" />
        <div style="display: none" class="sub-menu">
            <div class="sub-col">
                <img src="images/new-menu/home.png" width="46" height="14" alt="" />
                <ul>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                </ul>
            </div>
            <div class="sub-col">
                <img src="images/new-menu/home.png" width="46" height="14" alt="" />
                <ul>
                     <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                </ul>
            </div>
            <div class="sub-col">
                <img src="images/new-menu/sataer.png" width="124" height="17" alt="" />
                <ul>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
              </ul>
          </div>
            <div class="clear"></div>
        </div>
    </li>
    <li class="link-item">
        <img src="images/new-menu/menu-item_03.png" width="154" height="41" alt="" />
        <div style="display:none" class="sub-menu index-menu-col2">
            <div class="sub-col">
                <img src="images/new-menu/decor.png" width="53" height="15" alt="" />
                <ul>
                  <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
              </ul>
          </div>
            <div class="sub-col">
                <img src="images/new-menu/acc.png" width="94" height="15" alt="" />
                <ul>
                  <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
              </ul>
          </div>
            <div class="sub-col">
                <img src="images/new-menu/out-decor.png" width="120" height="17" alt="" />
                <ul>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
              </ul>
          </div>
            <div class="clear"></div>
        </div>
    </li>
    <li class="link-item">
        <img src="images/new-menu/menu-item_02.png" width="152" height="41" alt="" />
        <div style="display: none" class="sub-menu index-menu-col3">
            <div class="sub-col">
                <img src="images/new-menu/lighting.png" width="35" height="16" alt="" />
                <ul>
                  <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
              </ul>
          </div>
            <div class="sub-col">
                <img src="images/new-menu/electric.png" width="106" height="19" alt="" />
                <ul>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
                    <li>item</li>
              </ul>
          </div>
          <div class="clear"></div>
        </div>
    </li>
    <li class="link-item"><img src="images/new-menu/menu-item_01.png" width="151" height="41" alt="" /></li>
</ul>

and this JavaScript code :

$(document).ready(function(e) {
$(".link-item").hover(function(e) {
    $(this).children(".sub-menu").slideDown("slow");
});
$(".link-item").mouseleave(function(e) {
    $(this).children(".sub-menu").slideUp("fast");
});

When I open this page on Firefox and try one of these menus, it will act very strangely. and the pointed menu will slide down and slide up continually.

DEMO PAGE

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T17:21:59+00:00Added an answer on June 4, 2026 at 5:21 pm

    It looks like you have some “empty” area right under your links that is causing the menu to go up and down. You could try moving the menu up so that that empty area isn’t moused over, which is causing the “mouseleave” function to be executed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this HTML code : <ul class=navigation-links> <li class=link-item> <img src=images/new-menu/menu-item_04.png width=150 height=41
I have this HTML code: <div class='com_box'> <div class='com_box_c'> <div class='com_box_info'> <a id='quote'>quote</a> </div>
Suppose I have the following html: This a test of <code>some code</code>. <div class='highlight'>
I have this HTML Code: <!doctype html> <html> <head> <meta charset=utf-8> <title>Untitled Document</title> <link
I have this html code <html> <head> <title>JQuery Problem 2</title> <script type=text/javascript src=jquery-1.4.min.js></script> <script
I have this HTML code which simulates a dropdown multi-checkbox <div> <div class=select> <span>Select
I have the following navigation html/code now duplicated across several Views: <ul class=topNav> <li
I'm designing a navigation bar. The code looks like this: <nav class=menu> <ul class=topnav>
https://i.stack.imgur.com/OP0kc.jpg the navigation menu i have created using the CSS and Html code is
i have this html code: <select name=category id=category> <option value=0>&laquo;Seleziona la categoria&raquo;</option> <option value='1'

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.