How can I relatively position an element, and have it not take up space in the document flow?
Add a margin equal to the pixels that you moved:
Example
.box { position: relative; top: -30px; margin-bottom: -30px; }