Have you ever wished that your modules would align better, or have less space in between? Maybe you want to position two modules side-by-side without having to put thim in seperate skin panes.
You could also achieve this easily with a little CSS magic.
In the Module Settings > Advanced Settings, put some code in the Header and Footer to wrap the module in a floating DIV tag.Then you can position the module anywhere you like and not be confined by DNN positioning.
In the Header put this:
<div style="position:relative;top:-100px;left:100px;">
And in the Footer put this:
</div>
Now, you can adjust the top and left to put the module anywhere you like.
Remember Me