Consider the following code:
You can sit elements next to each other by using the CSS float property:
#first { float: left; } #second { float: left; }
You'd need to make sure that the wrapper div allows for the floating in terms of width, and margins etc are set correctly.