Skip to content

Instantly share code, notes, and snippets.

Created November 12, 2012 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4062759 to your computer and use it in GitHub Desktop.
Save anonymous/4062759 to your computer and use it in GitHub Desktop.
<script>
$(function () {
var isAdmin = window.frameElement ? window.frameElement.id : null;
if (!isAdmin) {
var layout = $('div[id^="layout_"]'),
header = layout.find('> .container > div').first(),
headerHeight = header.height();
header.css({position: 'fixed', width: '100%', top: '0px', 'zIndex': '100', '-moz-box-shadow': '0px 2px 2px #c5c5c5', '-webkit-box-shadow': '0px 2px 2px #C5C5C5', 'box-shadow': '0px 2px 2px #c5c5c5'});
$("body").css('margin-top', headerHeight);
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment