Using code mentioned below from thread, I am able to reduce the size of sidebar and create blank space on top.
following is the code I used for this:
import streamlit as st
st.markdown("""
<style>
section[data-testid="stSidebar"] {
top: 10%;
}
</style>""", unsafe_allow_html=True)
st.sidebar.title('Sidebar Title')
st.title('Main Title')
How can I add image in this blank space which common to blank area on top of sidebar and main title (dotted rectangle)?


