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 have used Solution For Very Long Dropdown Menus it's a great drop down menu but the problem is that I cannot set submenus (LEVEL TWO) width to be bigger than LEVEL ONE width

Any ideas?

Fiddle

Fiddle with fix Thank you dunli

My menu screenshot

CSS:

 /* 
        LEVEL ONE
    */
    ul.dropdown                         { position: absolute; width: 100%; }
    ul.dropdown li                      { float: right; position: relative; list-style-type:none; width: auto; text-align:center;  }
    ul.dropdown a:hover                 { color: #000;  }
    ul.dropdown li a                    { display: block; color: #222; position: relative; z-index: 2000;  }
    ul.dropdown li a:hover,
    ul.dropdown li a.hover              { background: #F3D673; position: relative; }
    .suca {
    width:100px;}

    /* 
        LEVEL TWO
    */
    ul.dropdown ul                      { display: none; position: absolute; top: 0; left: 0; width: 80px !important; z-index: 1000; }
    ul.dropdown ul li                   { font-weight: normal; background: #f6f6f6; color: #000; border-bottom: 1px solid #ccc;  width:auto;}
    ul.dropdown ul li a                 { display: block; background: #eee !important; padding-right: 20px; width: 100px !important; } 
    ul.dropdown ul li a:hover           { display: block; background: #F3D673 !important; width: 100px !important; }
share|improve this question
Can you make jsfiddle for reference of your problem? – dunli Jan 11 at 6:40
I added jsfiddle – Andrew Ceban Jan 11 at 6:45
The problem maybe caused by overflow:hidden; in the li element. The trick you are using for long dropdown seems to be advisable for 1 level dropdown only. I think so. – dunli Jan 11 at 6:59
Yep, you are right, the problem is caused by 'overflow:hidden', I deleted it from Jquery and added 'overflow:hidden' to 'ul.dropdown' in css and now the problem is that it is visible on scroll jsfiddle.net/rvfd5/3 – Andrew Ceban Jan 11 at 7:19
I have updated your jsfiddle. – dunli Jan 11 at 7:31
show 2 more comments

1 Answer

up vote 2 down vote accepted

I have updated your css a little bit. Here

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.