Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having trouble getting my navigation dropdown to line up into two columns. I created the code and have them set up into two separate divs inside of the menu but they just seem to overlap each other and I can't get them to line up correctly. This is just a quick test example to try and figure out my issue.

CSS

#content{
background-color:#999;
width:1500px;
height:1500px;
}

#menu{
list style:none;
width:600px;
margin:30px auto 0px auto;
height: 25px;
padding:0px 20px 0px 20px;
}

#menu li{
float:left;
display:block;
text-align:left;
position:relative;
padding:4px 10px 4px 10px;
margin-right:7px;
margin-top:7px;
border:none;
}

#menu li a{
color:#000;
display:block;
outline:0;
text-decoration:none;
}

#menu li:hover .dropdown_2column{
left:-1px;
top:auto;
}

.dropdown_2column{
position:absolute;
width:400px;
left:-999em;
margin:4px auto;
text-align:left;
padding:5px 2px 10px 2px;
border: none;
/*background color*/
background:#888b81;
opacity:.5; /* FX/Opera/Safari/Chrome */
    -ms-filter:"alpha(opacity=50)"; /* IE8 */
    filter:alpha(opacity=50); /* IE6/IE7 */
}

.col_2{
display:inline;
float:left;
position:relative;
margin-left:2px;
margin-right:2px;
}

HTML

<body>
<div id="content">
<ul id="menu">
<li><a href="#">about us</a></li>
<li><a href="#">newsletters</a></li>
<li><a href="#">projects</a>
 <div class="dropdown_2column">
   <ul class="col_2">
    <li><a href="#">Academic Review Follow-up</a></li>
    <li><a href="#">Assistive Technology</a></li>
    <li><a href="#">Autism</a></li>
    <li><a href="#">Behavior & Effective School-wide Discipline</a></li>
    <li><a href="#">Early Childhood</a></li>
    <li><a href="#">The Family Involvement Network (FIN)</a></li>
    <li><a href="#">I’m Determined</a></li>
    </ul>
  </div>
  <div class="dropdown_2column">  
    <ul class="col_2">
    <li><a href="#">Instructional Consultation Teams (ICT)</a></li>
    <li><a href="#">Intellectual Disabilities</a></li>
    <li><a href="#">Literary & Academic Instruction for Special Educators</a></li>
    <li><a href="#">Literacy for Middle and High Schools: Strategic Instruction Model    (SIM) and Content Literacy Continuum (CLC)</a></li>
    <li><a href="#">Secondary Transition</a></li>
    <li><a href="#">Standards-based Individualized Education Program (SB-IEP)</a></li>
    <li><a href="#">Standards of Learning (SOL) Enhanced Scope and Sequence (ESS)</a>                           </li>
    </ul>
  </div>
 </li>   
<li><a href="#">staff</a></li>
<li><a href="#">kihd library</a></li>
<li><a href="#">contact us</a></li>
</ul>
</div>
share|improve this question
Can you create a jsfiddle? – Mike G Aug 17 '12 at 15:02
Here is the link. jsfiddle.net/jricharc/xjeDM/2 – jricharc Aug 17 '12 at 15:15
Why would they not overlap? You are setting the left property to the same value for all the divs with the dropdown_2column class. Can you show what your target is? – Hidde Aug 17 '12 at 15:34
Here is something like what I am trying to do, refer to the "2 columns" dropdown in the navigation. I just want two columns of text so my links are spread out and I don't have a long list. themes.pixelworkshop.fr/?theme=CSS3MegaMenu – jricharc Aug 17 '12 at 15:56
Here is a better example of the type of drop down I am trying to achieve with the two columns. ns.nl/en/travellers/home – jricharc Aug 17 '12 at 20:58

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.