Search box drop down is not working

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.

Should they not be <select> form elements with <option>s rather than <ul> with <li>s?

1 Like

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}

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.