0

My dropdown button hides into a overflow div, see the image, before I click on the button. enter image description here

Image below I clicked on the button enter image description here

Look there, dropdown-content is into my 'overflowed' div, how I resolve that?
I'm using bootstrap 3.4.
I created my own dropdown menu already, but I get the same problem.

3
  • I want dropdown-content with overup of all elements Commented Oct 7, 2017 at 22:47
  • 1
    Can you show us your html so we can check if you're adding the correct classes? Commented Oct 7, 2017 at 22:55
  • @MarvelMoe is there, thanks for attention Commented Oct 7, 2017 at 23:01

1 Answer 1

2

You are hiding overflow for all the elements in users class.

.users .user > * {
    overflow: hidden;
}

you can remove it if not needed. or keep that and overwrite as

.users .user .control {
  overflow: visible;
}

here is a working codepen

Sign up to request clarification or add additional context in comments.

2 Comments

codepen.io/thecodermarcelo/pen/KXoPNX Now the dropdown content of the first of the list is under of the second of the list
take out the z-index: 1; from .users .user > * styles. here is the working codepen. codepen.io/anon/pen/pWLzwp

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.