While I donβt know any Drupal themes, I know how to recreate the effect - to snap an element to the top of the viewport, use CSS position: fixed
:
#topbar { position: fixed; top: 0 }
You probably also want to set an upper limit for the rest of your content so that it doesn't close it.
source share