Checks Browser Height - Adds CSS
$(window).resize(function(){ var bohi = $(window).height(); if(bohi < 440) { $("#content").css("top","20px"); } else { $("#content").removeAttr('style'); } });