Title: CSS dropdown not selectable
Last modified: August 20, 2016

---

# CSS dropdown not selectable

 *  Resolved [douglaskarr](https://wordpress.org/support/users/douglaskarr/)
 * (@douglaskarr)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/css-dropdown-not-selectable/)
 * CSS dropdown is not selectable, it’s just blank so I can’t actually modify which
   css file to choose.
 * [http://wordpress.org/extend/plugins/search-autocomplete/](http://wordpress.org/extend/plugins/search-autocomplete/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [jammy to go](https://wordpress.org/support/users/jammy-to-go/)
 * (@jammy-to-go)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/css-dropdown-not-selectable/#post-3464532)
 * Most likely your server is not windows, and the plugin is scripted to look in
   windows based directories ‘\’.
 * I had the same problem but managed to sort it out by editing the following file‘
   wp-content/plugins/search-autocomplete/searchautocomplete.php’.
 * Find lines:
 *     ```
       $globFilter = dirname(__FILE__).'\css\*\*.css';
   
       	foreach( glob($globFilter) as $stylesheet) {
   
       		$newSheet = str_replace(dirname(__FILE__).'\css', '', $stylesheet);
   
       		$newSheet = str_replace('\\', '/', $newSheet);
       ```
   
 * Replace with:
 *     ```
       $globFilter = dirname(__FILE__).'/css/*/*.css';
   
       	foreach( glob($globFilter) as $stylesheet) {
   
       		$newSheet = str_replace(dirname(__FILE__).'/css', '', $stylesheet);
   
       		$newSheet = str_replace('//', '/', $newSheet);
       ```
   
 * Hope it helps.
 *  Plugin Author [Gabe Shackle](https://wordpress.org/support/users/hereswhatidid/)
 * (@hereswhatidid)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/css-dropdown-not-selectable/#post-3464549)
 * The latest release (2.0.4) should fix this. Please let me know if the issue still
   occurs.
 *  Plugin Author [Gabe Shackle](https://wordpress.org/support/users/hereswhatidid/)
 * (@hereswhatidid)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/css-dropdown-not-selectable/#post-3464554)
 * Marking this as resolved due to inactivity.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘CSS dropdown not selectable’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/search-autocomplete_f8fbfd.svg)
 * [SearchAutocomplete](https://wordpress.org/plugins/search-autocomplete/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/search-autocomplete/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/search-autocomplete/)
 * [Active Topics](https://wordpress.org/support/plugin/search-autocomplete/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/search-autocomplete/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/search-autocomplete/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * 3 replies
 * 3 participants
 * Last reply from: [Gabe Shackle](https://wordpress.org/support/users/hereswhatidid/)
 * Last activity: [12 years, 11 months ago](https://wordpress.org/support/topic/css-dropdown-not-selectable/#post-3464554)
 * Status: resolved