The inability to hide, edit or remove the made by streamlit at the bottom of the webapp produced.
The ability to alter or remove the made by streamlit footer text
MVP: The simple addition to be able to set the text to False.
Came from https://discuss.streamlit.io/t/remove-made-with-streamlit-from-bottom-of-app/1370
Hey @matthew-trava, thanks for taking the time to file an issue! I've edited the title to make it easier to search for, and moved it to our internal board, for triaging.
It's not a feature for the product itself, but for a user who finds this and wants a hacky way to hide the footer, we use
hide_footer_style = """
<style>
.reportview-container .main footer {visibility: hidden;}
"""
st.markdown(hide_footer_style, unsafe_allow_html=True)
Most helpful comment
It's not a feature for the product itself, but for a user who finds this and wants a hacky way to hide the footer, we use