How To Remove “Made with Streamlit”, Hamburger Icon Menu & Streamlit Header
Language:
Paste the following code into your streamlit app, to hide the ‘Made with Streamlit’ footer, the Streamlit header & the Menu Icon.
👩💻 Source Code:
hide_st_style = """ <style> #MainMenu {visibility: hidden;} footer {visibility: hidden;} header {visibility: hidden;} </style> """ st.markdown(hide_st_style, unsafe_allow_html=True)