I have made a dropdown menu with jQuery, and I have a problem. At first, I added position:absolute; to the menu class, and it rolled down great, didn't move anything. Except, that it was positioned terribly wrong, and I couldn't get it to a position, where it would stay there on every screen resolution. So I changed to position:relative;, and added right:1px; to it. It's not positioned good, but it moves some items, that are below it. I tried adding z-index to every item, but it still moves items below the menu. How can I fix it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||

position: absolute. The issue is most likely that the parentliitem doesn't haveposition: relativeapplied. You'll need to post some code (jsFiddle or similar are great) or a live link. – CherryFlavourPez Nov 24 '11 at 10:58