It seems the dropbox becomes hidden when using the Acquia Prosper theme. It doesnt matter where i put the searchbox, it still happens. I have also tried different browsers without a difference.
Perhaps its due to the skinr/fusion combo and should be posted there instead :)

Please see attached image to understand what happens...

Comments

janusman’s picture

The autocomplete form element is just the standard Drupal '#autocomplete' element which surely has some issues.

I have had issues with it too being too small to display correctly, and solved them just by making the input box bigger via CSS.

Remember you can also change the module output by overriding theme_apachesolr_autocomplete_highlight() in your template or a custom module. See theme_apachesolr_autocomplete_highlight() in apachesolr_autocomplete.module

Perhaps this means, then, that the module shouldn't enable every form it can for autocomplete, but only those specified by the site admin? What do you think?

janusman’s picture

Status: Active » Closed (fixed)
izkreny’s picture

Version: 6.x-1.x-dev » 6.x-1.0
Priority: Minor » Normal
Status: Closed (fixed) » Active
StatusFileSize
new16.94 KB
new17.44 KB
new15.55 KB

Hi!

I have similar problem, so I just want information is it also problem with standard Drupal '#autocomplete' element?

When I search some terms (two words for example) everything is OK -> drupal_apache_solr_autocomplete_ok.png

But, when it comes to more suggested words, things become corrupted.

This is when mouse is over first suggestion -> drupal_apache_solr_autocomplete_NOT_ok_1.png

..and another one when mouse is over second suggested search term (it is same for second, third etc..) -> drupal_apache_solr_autocomplete_NOT_ok_2.png

I tried to make bigger search field (via HTML a.k.a. size of input tag and via CSS a.k.a. width properties), but obviously problem is not in size..

If this problem is related to only standard Drupal '#autocomplete' element can you please instruct me on which Drupal component to report this?

Tnx.

Environment:
Drupal 6.16 (default Garland theme)
Apache Solr Search Integration 6.x-1.0
Mozilla Firefox 3.6

P.S.
Apache Solr Search Integration module is awesome, but united with this module Drupal search really rocks! :D

janusman’s picture

Assigned: Unassigned » janusman

Ok, now THAT looks bad =) It might be this module and not the general #autocomplete form element. I'll look into it.

a5342346’s picture

subscribing

eelke’s picture

Any progress on this? I have exactly the same problem.

janusman’s picture

Status: Active » Closed (won't fix)
StatusFileSize
new2.21 KB
new2.33 KB

This is just a CSS issue.

Regarding the autocompletes, it is a known issue with Fusion themes that autocomplete boxes could get hidden, whenever there is a div using the "inner" class. To fix, add these lines to the css/local.css file in your theme folder:

div.block-search {
  overflow: visible;
}

... of course, changing the "block-search" to whatever your block class really is... this worked for me fine... see attached screenshots.

janusman’s picture

For a related issue in the Fusion issue queue (and alternate CSS solution), see: #808118: Autocomplete gets cut off

izkreny’s picture

JFTR: I can't solve my (#3) problem in Garland (D6) with this CSS code BUT(!) effort in #573574: when clicking on one of the suggestions execute search (in particular last patch as I'm posting this) is making this issue history. :)