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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:46:21+00:00 2026-05-30T16:46:21+00:00

I have a nav bar that has a dropdown menu made with styled tags.

  • 0

I have a nav bar that has a dropdown menu made with styled tags. Here is an example of a test page: http://www.problemio.com/problems/problem_dev.php?problem_id=161

What I don’t understand is where the white divider bar comes from and how to make it either go away or make it fit as a nicer seperator. And why when you mouse over the categories does the dropdown list appear below the add-problem link?

Here is the HTML for that div:

        <div class="menusystem" id="site_nav">

            <ul class="main_menu_ul"> <!-- The entire nav thing -->

                <li class="main_menu_li"><a style="color: white;" href="http://www.problemio.com/add_problem.php">Post a Problem</a>
                </li>

                <li class="main_menu_li_left"><a style="color: white;" href="http://www.problemio.com/problems/categories.php">Problem Categories</a> 
                    <ul class="child_menu_ul"> 
                        <li class="first"><a href="http://www.problemio.com/category.php?category_id=1">Health and Medicine</a></li> 
                        <li><a href="http://www.problemio.com/category.php?category_id=62">Environment</a></li>
                        <li><a href="http://www.problemio.com/category.php?category_id=7">Business</a></li>
                        <li><a href="http://www.problemio.com/category.php?category_id=4">Education</a></li>
                        <li><a href="http://www.problemio.com/category.php?category_id=2">Politics</a></li>
                        <li><a href="http://www.problemio.com/category.php?category_id=12">Art</a></li>
                        <li><a href="http://www.problemio.com/category.php?category_id=3">Local</a></li>
                        <li><a href="http://www.problemio.com/category.php?category_id=5">Technology</a></li>
                        <li><a href="http://www.problemio.com/category.php?category_id=46">Entertainment</a></li>
                        <li class="last"><a href="http://www.problemio.com/category.php?category_id=14">Social Issues</a></li>
<!--                        <li><a href="http://www.problemio.com/problems/all_problems.php">All Problems</a></li>
-->                         
                    </ul> 
                </li>
            </ul>



    </div> <!-- Closing menusystem div -->

and here is the css styling for that div:

.menusystem 
{
    position: absolute;
    font-size: 1em;
    color: white;
}

.menusystem ul, .menusystem li 
{
    margin: 0;
    padding: 0;
}
.menusystem li 
{
    list-style: none outside none;
}

.menusystem ul 
{
    list-style: none;
}

.menusystem ul li ul 
{
    display: none;
    position: absolute;
    top: 1.6em;
    right: 0;
    background-color: #5C5957; /* this gives the whole thing a background color */
}

.menusystem li a 
{
    text-decoration: none;
}

.menusystem ul li.main_menu_li 
{
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 7px;
    margin-bottom: 7px; 

    display: block;
    float:right;

    margin-right:0.2em;
    text-align: center;
    border-left: solid 1px white;   
/*  line-height: 1em;   */
    height: 15px;
}

.menusystem ul li.main_menu_li_left
{
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 7px;    
    margin-bottom: 7px;     

    display: block;
    float:right;
    margin-right:0.2em;
    text-align: center;


/*  line-height: 1em;   */
    height: 15px;   
}

/* IE-Win (Holly hack) reads the list item line breaks, so lets hide those \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }


.menusystem li:hover ul, .menusystem li.mouseHover ul { 
    display: block;
}

.menusystem li ul.child_menu_ul li a
{
    color: #fff;


    font-size: 80%;
    text-shadow: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-top: 0px;
}


.menusystem li ul.child_menu_ul li.first a
{
    -moz-border-radius-topleft: 14px;
    -moz-border-radius-topright: 14px;
    -webkit-border-top-left-radius: 14px;
    -webkit-border-top-right-radius: 14px;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
}


.menusystem li ul.child_menu_ul li.last a
{
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
        -moz-border-radius-bottomleft: 14px;
    -moz-border-radius-bottomright: 14px;
    -webkit-border-bottom-left-radius: 14px;
    -webkit-border-bottom-right-radius: 14px;
}


.menusystem li ul.child_menu_ul li a:hover 
{
    color: #ff0;
    background: #2e6ea4; 
}

/*.menusystem li.main_menu_li a */
.menusystem ul.child_menu_ul a
{
    color: #fff;            
    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
}

.menusystem li.main_menu_li a:hover 
{
    color: orange;
}
  • 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-05-30T16:46:22+00:00Added an answer on May 30, 2026 at 4:46 pm
    .menusystem ul li.main_menu_li {
        border-left: solid 1px white; /* remove this */
    }
    

    You need to remove the above line.

    Smells like copy & paste to me 🙂

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

Sidebar

Related Questions

I have an app that has a tab bar & nav bar for normal
I have a layout of fixed-pixel width (960px) with a navigation bar that has
I would like to have a search box integrated into a nav bar that
I made a UIView using Interface Builder with a top bar that has Cancel
Trying to have a horizontal navigation bar that has equally spaced links spanning across
I have an app that uses a tab bar controller. It has five tabs.
I have designed a responsive layout that you can see here: http://pixelcakecreative.com/cimlife/responsive/ When viewed
I have a tab bar driven app. The app has some view controllers that
I have a Header/navigation bar on a site, it has a logo, navigation menu,
I have a nav bar with children unordered lists nested under the main navbar

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.