Removal of Stop from the header


I want the header as it is, I just want to remove Stop from this

Hi @Nilesh_Ravichandran and welcome to the community!

You can use some CSS to change the display options for that button, for that you can use this st.markdown widget at the top of your app.

st.markdown(
    """
    <style>
   div[data-testid="stStatusWidget"] div button {
        display: none;
        }
        </style>
""",
    unsafe_allow_html=True,
)

Hope it helps,

Carlos

1 Like

Ok thank you.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.