Appendix B - Common Errors
Previous  Top 

 
Solutions to Common Errors can be found here.  
 
 
do-it Problem: I have taken out the Language drop-down menu from my site, but now my Country/City/State drop-down menus do not populate correctly.  
 
bullet Solution: To fix this problem, you must insert a blank form in the page "/templates/page_top.html". It is suggested that you insert this form in the same table cell as the Language drop-down was located. The form code may look like this:  
 
<form name="fake" id="fake"></form>  
 
This action is necessary if you remove the Language drop-down menu because the JavaScript used to populate the Country/City/State menus relies on the assumption that the form containing these fields is the second one on the page. If you remove the Language drop-down menu, which itself is a separate form, then this assumption no longer holds, and the menus will not get populated correctly.