I am currently facing an issue with the dropdown element in Bootstrap 3 as it is not displaying any elements. This problem arises due to a conflict in the CSS of the "wrapper" element.
#wrapper { width:100%; height:100%; position:absolute; top:0; left:0; overflow:hidden; }
Some may suggest removing the conflicting CSS, but that's not an option for me. I am trying to create a parallax effect similar to the one seen here.
The style applied to the wrapper element is essential for achieving the desired parallax effect. Adjusting the top size might seem like a solution, but it won't work if the dropdown menu expands with more elements.
You can view a demo showcasing the issue here.
Any suggestions on how I could resolve this dilemma?