<style type="text/css">
.fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
background-color: rgba(120, 140, 200, 0.8);
padding: 1em 3em;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('body').css('margin-top', $('.fixed-top').outerHeight()) ;
});
</script>
<div class="fixed-top"></div>