Hi there! I’m looking for some guidance as I’m new to Streamlit and haven’t found exactly what I need in the available Streamlit and community components.
I’m designing an e-commerce search page on Streamlit. The goal is to display selected filters (facets) as tags at the top of the page, allowing users to easily see and remove filters by deleting the corresponding tags. Here’s an example screenshot from an e-commerce website to illustrate this feature.
I tried using st.multiselect (see the bottom of the screenshot), but it looks like the tags aren’t able to handle longer labels, so the text gets cut off.
You can modify that by this simple function. This allows for longer text in the multiselect.
def show_longer_text_in_multiselect():
"""Show longer bits of text in streamlit multiselect items."""
st.markdown(
"""
<style>
.stMultiSelect [data-baseweb=select] span{
max-width: 250px;
}
</style>
""",
unsafe_allow_html=True,
)
# next to max-width, you can add <font-size: 0.6rem;> to change font size
Just change the 250 to how many it needs to be for your application.
Then, just call this function once at the start of your script or page.
Hopefully this helps!
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.