You can use float for this particular div, for example
<div style="float:right;">
Float the div in which you want more space, as well as the left:
<div style="float:left;">
If all else fails, then the div is in the right position: absolute, and then it moves as correctly as you want it to.
<div style="position:absolute; left:-500px; top:30px;">
etc .. Obviously, the style should be added to a separate stylesheet, but this is just a faster example.
lifetimes
source share