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
Use
position: absolute; top: ...px; left: ...px;
To position the div. Make sure it doesn't have a parent tag with position: relative;