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 8270963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:43:40+00:00 2026-06-08T06:43:40+00:00

I am currently using a CSS menu on PHP includes. I have gotten to

  • 0

I am currently using a CSS menu on PHP includes. I have gotten to to be compatible with IE and Chrome and I assume Firefox. However in IE, The sub menu for my drop down menu is to far away from the drop down and disapears before I can hover above it.

The original CSS

#cssmenu ul { margin: 0; padding: 0;}
#cssmenu li { margin: 0; padding: 0;}
#cssmenu a { margin: 0; padding: 0;}
#cssmenu ul {list-style: none;}
#cssmenu a {text-decoration: none;}
#cssmenu {height: 70px; background-color: rgb(35,35,35); box-shadow: 0px 2px 3px rgba(0,0,0,.4);}


#cssmenu > ul > li {
    float: left;
    margin-left: 15px;
    position: relative;
}

#cssmenu > ul > li > a {
    color: rgb(160,160,160);
    font-family: Verdana, 'Lucida Grande';
    font-size: 15px;
    line-height: 70px;
    padding: 15px 20px;
-webkit-transition: color .15s;
   -moz-transition: color .15s;
     -o-transition: color .15s;
        transition: color .15s;
}

#cssmenu > ul > li > a:hover {color: rgb(250,250,250); }


#cssmenu > ul > li > ul {
    opacity: 0;
    visibility: hidden;
    padding: 16px 0 20px 0;
    background-color: rgb(250,250,250);
    text-align: left;
    position: absolute;
    top: 55px;
    left: 50%;
    margin-left: -90px;
    width: 180px;
-webkit-transition: all .3s .1s;
   -moz-transition: all .3s .1s;
     -o-transition: all .3s .1s;
        transition: all .3s .1s;
-webkit-border-radius: 5px;
   -moz-border-radius: 5px;
        border-radius: 5px;
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
   -moz-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
        box-shadow: 0px 1px 3px rgba(0,0,0,.4);
}

#cssmenu > ul > li:hover > ul {
    opacity: 1;
    top: 65px;
    visibility: visible;
}

#cssmenu > ul > li > ul:before{
    content: '';
    display: block;
    border-color: transparent transparent rgb(250,250,250) transparent;
    border-style: solid;
    border-width: 10px;
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
}

#cssmenu > ul ul > li { position: relative;}

#cssmenu ul ul a{
    color: rgb(50,50,50);
    font-family: Verdana, 'Lucida Grande';
    font-size: 13px;
    background-color: rgb(250,250,250);
    padding: 5px 8px 7px 16px;
    display: block;
-webkit-transition: background-color .1s;
   -moz-transition: background-color .1s;
     -o-transition: background-color .1s;
        transition: background-color .1s;
}

#cssmenu ul ul a:hover {background-color: rgb(240,240,240);}


#cssmenu ul ul ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -16px;
    left: 206px;
    padding: 16px 0 20px 0;
    background-color: rgb(250,250,250);
    text-align: left;
    width: 160px;
-webkit-transition: all .3s;
   -moz-transition: all .3s;
     -o-transition: all .3s;
        transition: all .3s;
-webkit-border-radius: 5px;
   -moz-border-radius: 5px;
        border-radius: 5px;
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
   -moz-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
        box-shadow: 0px 1px 3px rgba(0,0,0,.4);
}


#cssmenu ul ul > li:hover > ul { opacity: 1; left: 196px; visibility: visible;}


#cssmenu ul ul a:hover{
    background-color: rgb(205,44,36);
    color: rgb(240,240,240);
}

MENU code:

<div id='cssmenu'>
<ul>
   <li><a href='index.php'><span>Home</span></a></li>
   <li><a href='about.php'><span>About</span></a></li>
   <li class='has-sub '><a href='#'><span>Services</span></a>
      <ul>
         <li class='has-sub '><a href='4wdtraining.php'><span>4WD Training</span></a>
            <ul>
               <li><a href='basictraining.php'><span>Basic</span></a></li>
               <li><a href='intermediatetraining.php'><span>Intermediate</span></a></li>
               <li><a href='advancedtraining.php'><span>Advanced</span></a></li>
               <li><a href='nightdriving.php'><span>Night Driving</span></a></li>
               <li><a href='recovery.php'><span>Recovery</span></a></li>
               <li><a href='custompackages.php'><span>Custom Packages</span></a></li>
            </ul>
         </li>
         <li><a href='bushmechanic.php'><span>Bush Mechanic</span></a></li>
      </ul>
   </li>
   <li><a href='estore.php'><span>eStore</span></a></li>
   <li><a href='gallery.php'><span>Gallery</span></a></li>
   <li><a href='#'><span>Contact</span></a></li>
</ul>
</div>

Live example at http://www.offthebitumen.com.au
Things I have tried: Changing the padding, changing positions from absolute to relative, getting rid of the border, adding display: inline – nothing has worked.

Also if anyone has Chrome and IE, why is the menu more rounded compared to the IE version? Is there anything I can do about it?

  • 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-08T06:43:41+00:00Added an answer on June 8, 2026 at 6:43 am

    It’s because you have a gap.

    I did a little hack, hope it will help.

    <div id='cssmenu'>
    <ul>
       <li><a href='index.php'><span>Home</span></a></li>
       <li><a href='about.php'><span>About</span></a></li>
       <li class='has-sub '><a href='#'><span>Services</span></a>
          <ul>
             <li class='has-sub '><a href='4wdtraining.php'><span>4WD Training</span></a>
                <ul>
                   <li><a href='basictraining.php'><span>Basic</span></a></li>
                   <li><a href='intermediatetraining.php'><span>Intermediate</span></a></li>
                   <li><a href='advancedtraining.php'><span>Advanced</span></a></li>
                   <li><a href='nightdriving.php'><span>Night Driving</span></a></li>
                   <li><a href='recovery.php'><span>Recovery</span></a></li>
                   <li><a href='custompackages.php'><span>Custom Packages</span></a></li>
                </ul>
                <!-- THIS IS THE FIX --> <div class="hack"></div> <!-- end FIX -->
             </li>
             <li><a href='bushmechanic.php'><span>Bush Mechanic</span></a></li>
          </ul>
       </li>
       <li><a href='estore.php'><span>eStore</span></a></li>
       <li><a href='gallery.php'><span>Gallery</span></a></li>
       <li><a href='#'><span>Contact</span></a></li>
    </ul>
    </div>
    

    And just 2 bits of css:

    #cssmenu ul ul > li:hover > ul { opacity: 1; left: 196px; visibility: visible;}
    #cssmenu ul ul ul {
       z-index: 5;
    }
    

    Good luck !

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

Sidebar

Related Questions

I currently have a drop-line horizontal menu using an unordered list with the following
I am creating a simple drop down menu using css. <ul> <li id=base><a href=projects.php
I have a drop-down/multi-level CSS menu on a page. The menu however doesn't appear
I'm currently using PHP, JAVASCRIPT, MYSQL, XHTML, CSS to develop my site. Note that
I want to highlight the current menu you have click. I'm using CSS, but
I have created a menu using CSS and Javascript. When I click on a
using css menumaker menu found here: http://cssmenumaker.com/menu/grey-impression-drop-down-menu-0 I'm trying to create a 3rd level
I want to create a non-stop spinning square using html and css. I currently
I'm using Blueprint as my CSS framework in my rails project. But currently I'm
Currently using Xcode 4.2 and I have two view controllers (1 and 2). I

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.