I am developing a streamlit application where I am using st.sidebar and from streamlit_modal import Modal.
When the modal is popped up, i.e when its openned, it overlaps with the sidebar, but the sidebar stays in front of the modal, and that was not the expected result.
I would like to keep the modal on top of the sidebar or resize it to not overlap with the sidebar.
Thank you for sharing your question with the community!
Your post is missing a code snippet and a link to your app’s GitHub repo. Please check out our guidelines on how to post an effective question here and update your post to help the community answer your question.
You can use st.columns to create a layout with two columns: one for the sidebar and the other for the main content including the modal.
import streamlit as st
from streamlit_modal import Modal
# Create a layout with two columns
sidebar_col, empty_col, main_col = st.columns([1, 2, 4])
# Sidebar content
with sidebar_col:
# Add your sidebar elements here
st.sidebar.header("Sidebar")
st.sidebar.button("Sidebar Button")
# Main content including the modal
with main_col:
st.title("Main Content")
st.write("Main content goes here")
# Create and display the modal
with Modal():
st.header("Modal")
st.write("Modal content goes here")
st.button("Close Modal")
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.