Preview:
var Header = document.querySelector('.atmc-header');
var body_wrp = document.querySelector('.body-wrapper');
if(Header){

  function getElHeight(){
    const elementHeight = Header.offsetHeight;
    var unit = "px"
    body_wrp.style.paddingTop = elementHeight + unit;
    console.log(elementHeight)
  }
  getElHeight();
  window.addEventListener("scroll", getElHeight);
  window.addEventListener("load", getElHeight);
  window.addEventListener("resize",getElHeight);
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter