Hi there,
If you hide it server side with Visible=False, the control's HTML never makes it to the browser, so it won't take up space.
If you want to hide something client side, use display: none:
Code:
<div style="display: none; width: 100px;">You won't see me</div>
Cheers,
Imar