I have made a page in which I m using three dropdowns for search which I have put in the (ul-li) tags but is not opening the dropdowns.
If am putting entire search box out of ul-li tags then dropdowns working properly.
I think the ul-li tags are clashing. I tried out but not getting where I m doing something wrong in the dropdowns jQuery.
SamA74
2
Should they not be <select>
form elements with <option>
s rather than <ul>
with <li>
s?
1 Like
PaulOB
3
You are hiding the lists here (custom.css line 586):
ul#Contenttab1 li {display:none}
So you need to show it here in the nested ul so that the tabs are seen.
ul#Contenttab1 ul li{display:block}
system
Closed
4
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.