Sidebar markdow information for users

Hi guys,

I was looking for something like this image below, to put in my streamlit app side bar, to show users who made the app or maybe other information.

i tried this code below, but didn’t worked as expected. I need to change the background color and the information needs to be in a box, like the Contribute section in the picture above.

st.sidebar.markdown(“”"## Developers

This Web Software was created by …

“”", unsafe_allow_html=True)

Hey @feliperoque,

This is actually the st.info() command, it will give you that blue background that you’re looking for.

https://docs.streamlit.io/en/stable/api.html?highlight=st.info#streamlit.info

Happy Streamlit-ing!
Marisa

1 Like

@Marisa_Smith Thanks!

1 Like