I\'m trying to put html code to a design mockup my boss provided, and some of the aesthetics - the shape of the search bar, for example, are a little bit bizarre and complex. As
As far as the invisibility goes, put this CSS on your input:
input { background: transparent; border: none; }
Check out this jsFiddle that shows this in action. As far as positioning the input goes, you should be able to handle that normally.