The typeahead suggestion box goes down - its a drop down list. How can I make it go up so that the base of the suggestions box is at the top of the text field?
Like this for example...
The typeahead suggestion box goes down - its a drop down list. How can I make it go up so that the base of the suggestions box is at the top of the text field?
Like this for example...
I managed this by removing the following from the template:
This from my CSS:
And adding the following to the CSS:
Where 38px is the height of the text box. Unfortunately the
top
declarations had to be removed because there's no way as far as I know to unsettop
without using script and it takes precedence overbottom
.I own the CSS and I can put the template in a separate file that overrides the default so I won't lose my changes.