Remove "Made with Streamlit" from bottom of app

To hide hamburger (top right corner) and “Made with Streamlit” footer, do this :

hide_streamlit_style = """
            <style>
            #MainMenu {visibility: hidden;}
            footer {visibility: hidden;}
            </style>
            """
st.markdown(hide_streamlit_style, unsafe_allow_html=True) 

Enjoy !!!

23 Likes