I’m trying to embed an image in my streamlit app and I want to make the image fill the full width of the browser like the banner at the top of this one #COVID19 Discourse on Twitter. How do I do that?
I tried this approach, however there is still padding around the streamlit app so the image does not fill the entire browser.
from PIL import Image
image = Image.open('background.png')
st.image(image)
I also tried the method in How do I use a background image on streamlit but that gave me a background image but not a banner image.
Thank you so much!