How do i hide/ remove the menu in production?

Hey @Fhireman , I faced the same issue but in my case i wasn’t able to scroll at all, I found a work around for this , i did the following -

enable_scroll = """
<style>
.main {
    overflow: auto;
}
</style>
"""

st.markdown(enable_scroll, unsafe_allow_html=True)

So using this along with ?embed=true seemed to be the solution , but another drawback of this is that the part which shows ‘Connecting’ or ‘Running’ is also hidden.

1 Like