You want to use absolute positioning .
An absolute position element is positioned relative to the first parent element, which has a position other than static. If such an element containing an HTML block
For example:
.yourDiv{ position:absolute; top: 123px; }
To make it work, the parent must be relative ( position:relative )
In your case, this should do the trick:
.suggestionsBox{position:absolute; top:40px;} #specific_locations_add{position:relative;}
marcgg Jan 05 '10 at 13:07 2010-01-05 13:07
source share