Move site down in backend?

Permalink
Is there a way to move the site down in the backend, so the top part is not hidden by the C5 bar?

 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Add the below code just after ending the head tag.
<?php  
$cp = new Permissions($c);
if($cp->canWrite() && $cp->canAddSubContent()){
//leave an extra space from the top while in edit mode
echo('<style type="text/css">body{margin-top:50px;}</style>');
}?>
jcboutkan replied on at Permalink Reply
This doesn't work on absolute positioned objects.
But I can off course move the editable items the same way.
Thx!