Hiding "Live Docs" bar in Pluto

Is there a simple way to permanently hide the “live docs” bar that appears at the bottom of Pluto notebooks?

nope

You can embed HTML/CSS/JavaScript in a Pluto notebook, this works for me

html"""
<style>
  pluto-helpbox {
    display: none;
  }
</style>
"""

Note that this hides it on that particular notebook, not for all notebooks.

1 Like

Thank you!