How do i hide/ remove the menu in production?

hide_streamlit_style = “”"

#MainMenu {visibility: hidden;}
footer {visibility: hidden;}

“”"
st.markdown(hide_streamlit_style, unsafe_allow_html=True)

try this

8 Likes