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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T13:41:43+00:00 2026-06-02T13:41:43+00:00

I have a really simple menu that I’d like to add a drop-down. What

  • 0

I have a really simple menu that I’d like to add a drop-down. What do I need to do to add a drop down in here to one of the items?

http://www.cozinhatur.com/teste1/

HTML

    <div class="menu">
  <div class="search">
    <form id="form1" name="form1" method="post" action="">
      <label><span>
        <input name="q" type="text" class="keywords" id="textfield" maxlength="50" value="Pesquisar..." />
        </span>
        <input name="b" type="image" src="images/search.gif" class="button" />
      </label>
    </form>
  </div>
  <ul>
    <li><a href="index.html" class="active">HOME</a></li>
    <li><a href="quemsomos.html">QUEM SOMOS</a></li>
    <li><a href="index.html">COZINHAS</a></li>
    <li><a href="#">DIVERSOS</a></li>
    <li><a href="index.html">PRODUTOS</a></li>
    <li><a href="contact.html">CONTACTOS</a></li>
  </ul>
  <div class="clr"></div>
</div>

CSS

.menu
{
    background:#5d5d5d;
    margin:0 auto;
    padding:0;
    width:942px;
}

.menu ul
{
    border:0;
    float:left;
    list-style:none;
    margin:0;
    padding:0;
    text-align:left;
}

.menu ul li
{
    border:0;
    float:left;
    margin:0;
    padding:0 5px 0 0;
}

.menu ul li a
{
    color:#fff;
    float:left;
    font-family:Verdana, Helvetica, Arial, sans-serif;
    font-size:11px;
    margin:0;
    padding:15px;
    text-decoration:none;
}

.menu ul li a:hover
{
    background:#b57800;
}

.menu ul li a.active
{
    background:#1caedd;
}

.menu ul li ul,.menu ul li ul a
{
    font-family:Verdana, Helvetica, Arial, sans-serif;
    font-size:11px;
}
  • 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-02T13:41:44+00:00Added an answer on June 2, 2026 at 1:41 pm

    Have made a simple CSS drop down from your menu. See jsFiddle Demo. Hover over the second and third menu items to see the drop down.

    Hoping this will help you to further build to suit your needs.

    The code changes….

    HTML

    <div class="menu">
        <ul>
            <li><a href="index.html" class="active">HOME</a></li>
            <li><a href="quemsomos.html">QUEM SOMOS</a>
              <ul>
                <li><a href="">Item 1</a></li>
                <li><a href="">Item 2</a></li> 
                <li><a href="">Item 3</a></li> 
              </ul> 
            </li>
            <li><a href="index.html">COZINHAS</a>
             <ul>
                <li><a href="">Item 1</a></li>
                <li><a href="">Item 2</a></li> 
                <li><a href="">Item 3</a></li> 
              </ul> 
            </li>
            </li>
            <li><a href="#">DIVERSOS</a></li>
            <li><a href="index.html">PRODUTOS</a></li>
            <li><a href="contact.html">CONTACTOS</a></li>
         </ul>
    </div>
    

    CSS

    .menu {
        background:#5d5d5d;
        margin:0 auto;
        padding:0;
        width:942px;
    }
    ul {
        border:0;
        float:left;
        list-style:none;
        margin:0;
        padding:0;
        text-align:left;
    }
    ul li {
        display: block;
        position: relative;
        float: left;
        border:0;
        float:left;
        margin:0;
        padding:0 5px 0 0;
    }
    li ul { 
        display: none; 
    }
    ul li a {
        display: block;
        text-decoration: none;
        color: #ffffff;
        border-top: 1px solid #ffffff;
        padding: 5px 15px 5px 15px;
        background: #5d5d5d;
        margin: 0px;
        white-space: nowrap;
    }
    ul li a.active
    {
        background:#1caedd;
    }
    ul li a:hover { 
        background: #b57800; 
    }
    li:hover ul { 
        display: block; 
        position: absolute;
    }
    li:hover li { 
        float: none;
        font-size: 11px;
    }
    li:hover a { 
        background: #5d5d5d; 
    }
    li:hover li a:hover { 
        background: #b57800; 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It's really simple, I just want one screen. Wow, that [shiny thing] must have
I have a simple menu that looks like this: <ul class=menu> <li class=active><a href=<%=
I have a really simple XML file that I'm trying to read, but I
I have a really simple blog application and I want to add a really
A really simple shell script question. I have a file with something like this:
I have a simple console application that outputs a menu and waits for user
Good Morning, I have a really simple script that works fine on everything but
I need help with the following, i have a menu that i want to
I have a really simple Rails app. Basically an article with comments. I want
I have a really simple mod-rewrite rule : RewriteRule ^(.*)$ index.php?url=$1 [PT,L] As an

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.