dear sir
I have attempted both codes without success in hiding the GitHub icon. Please provide guidance on how to conceal the GitHub icon from my Streamlit application deployed on the Streamlit server, ensuring that my code remains inaccessible.
1.
hide_github_icon = “”"
#GithubIcon {
visibility: hidden;
}
“”"
st.markdown(hide_github_icon, unsafe_allow_html=True)
st.markdown(
“”"
.css-1jc7ptx, .e1ewe7hr3, .viewerBadge_container__1QSob,
.styles_viewerBadge__1yB5_, .viewerBadge_link__1S137,
.viewerBadge_text__1JaDK {
display: none;
}
“”",
unsafe_allow_html=True
)