Hi Guys,
If you look in the index.php at the top you will find this code:
| Code: |
<?php if ( mosCountModules( 'user2' ) <= 0) { ?>
<style type="text/css" media="screen">
div#top {
margin: 3px 0 -11px 0;
}
#hmenu {
background-color: #DEDFE1;
}
</style>
<?php } ?>
|
What this does is check if no user 2 is published to move the top div up by 11px to bend with the page. you will also notice a 3px left padding. Now I know I must have added this for a reason, but I cant think of the reason now

If you change the css line to the following, this will stop the moving.
| Code: |
div#top {
margin: 0 0 -11px 0;
}
|