Automatically set content margin with fixed header

$(document).ready(function() { $(window).bind('load resize',function () { var headerSize = $('header').height(); $('header + div').attr('style', 'margin-top:' + headerSize + 'px;') }); });

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.