Removing space before sidebar title

Hi @rik,
You can make use of this unofficial CSS hack by adding the following to your Streamlit app:

st.markdown("""
  <style>
    .css-o18uir.e16nr0p33 {
      margin-top: -75px;
    }
  </style>
""", unsafe_allow_html=True)

You can have a look at the code and demo here:

1 Like