Delete red bar at the top of the app?

Hello,

Does anyone know if there’s a way to delete the red bar at the top of the app?

Thanks

You can do something like this:

hide_decoration_bar_style = '''
    <style>
        header {visibility: hidden;}
    </style>
'''
st.markdown(hide_decoration_bar_style, unsafe_allow_html=True)
4 Likes

Whoa, this is fantastic. That’s exactly what I needed.

Thank you @GokulNC !!!

1 Like