I\'ve implemented a popup box that dynamically displays search options. I want the box to \"float\" above all of the site content. Currently, when the box is displayed it
The results container div has position: relative meaning it is still in the document flow and will change the layout of elements around it. You need to use position: absolute to achieve a 'floating' effect.
You should also check the markup you're using, you have phantom s with no container , you could probably replace both the div#suggestions and div#autoSuggestionsList with a single and get the desired result.