Pravesh Singh
Pravesh Singh

Reputation: 324

drop down hide behind jquery slider

enter image description here

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

http://www.mindstick.com/Articles/f649279c-dc3a-42cb-ab10-e24ae9a1bb90/?Stylish%20Dropdown%20in%20HTML

any suggestion will be appreciated. Please help me!

Thanks in advance!

Upvotes: 3

Views: 621

Answers (2)

nicholasnet
nicholasnet

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

ebram khalil
ebram khalil

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

Related Questions