How to take the whole space of the page

Hi everyone,
I am currently struggling trying to render my app more user friendly by moving my plot and my text to the left by removing the blank as you can see in this image :

Any idea how cound I do that ? I tried with :

col1, col2, col3 = st.columns([1,1,10])
with col3 :
—> my page

But it did not work as expected…

Many thanks

I found the solution and it is very simple. At the very beggining of your code :

st.set_page_config(layout = “wide”)

Simple :slight_smile:

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.