Hello guys,
Just wanted to ask if it is possible to Hide the Background image after logging in.
Currently, I have this code that sets the background image of the Application. However, the problem is how can I disappear/hide the image after logging in back to plain white again.
CSS:
st.markdown(
“”"
.stApp {
background-image: url(“#”);
background-attachment: fixed;
background-size: cover;
}
“”",
unsafe_allow_html=True
)
Thank you in advance.