Reputation: 324
how to display custom drop down on top of slider as per below image
i have used below link for slider
http://www.bitrepository.com/content-sliders.html
and for drop down, i have used below link
any suggestion will be appreciated. Please help me!
Thanks in advance!
Upvotes: 3
Views: 621
Reputation: 2287
Just like Adrift said I think it will be better if you provide Fiddle demonstrating your problem. If you can't then for your dropdown like
<div><!-- You content slider main DIV -->
<select style="position: relative; z-index: 1000;"></select>
</div>
You can use class instead if you do not like to use inline style.
Upvotes: 0
Reputation: 8331
By looking at the demo of the slider you are using i think the problem is in <div id="featured">
because it has css property overflow:hidden
so anything outside that div 'll not be seen.
Upvotes: 1