Spaces:
Running
Running
trying to remove footer
Browse files
app.py
CHANGED
@@ -136,6 +136,14 @@ css='''
|
|
136 |
'''
|
137 |
st.markdown(css, unsafe_allow_html=True)
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
# initialize state
|
141 |
init_session_state()
|
|
|
136 |
'''
|
137 |
st.markdown(css, unsafe_allow_html=True)
|
138 |
|
139 |
+
# remove the hamburger in the upper right hand corner and the Made with Streamlit footer
|
140 |
+
hide_menu_style = """
|
141 |
+
<style>
|
142 |
+
#MainMenu {visibility: hidden;}
|
143 |
+
footer {visibility: hidden;}
|
144 |
+
</style>
|
145 |
+
"""
|
146 |
+
st.markdown(hide_menu_style, unsafe_allow_html=True)
|
147 |
|
148 |
# initialize state
|
149 |
init_session_state()
|