Iframe Component is Blank on Streamlit Cloud Deploy

hey @ragelysium, is your problem responsiveness or the white spacing on the top and bottom? With your example, you can edit the padding at the top by doing something like:

st.set_page_config(page_title=None, page_icon=None, layout="wide", initial_sidebar_state="auto", menu_items=None)

st.markdown(""" <style> #MainMenu {visibility: hidden;} footer {visibility: hidden;} </style> """, unsafe_allow_html=True)
st.markdown(
    "<style>div.block-container{padding-top:1rem;}</style>", unsafe_allow_html=True
)
placeholder = st.empty()
st.components.v1.iframe("https://www.elysiumanalytics.ai/", width = 1500, height = 800, scrolling = True)

This post can also probably help out if you’re looking for something exacty at the top of the screen.