Hello guys, how i can change the colour of the first line of the table?
put orange colour in header of table, “Number of Users”, “Bank Movements”, “Detected Frauds”
Hello guys, how i can change the colour of the first line of the table?
put orange colour in header of table, “Number of Users”, “Bank Movements”, “Detected Frauds”
Hello @Tiago_Galvao,
Assumin you only have one table, you can change the color of the header of your table by integrating css like the following:
header_style = '''
<style>
th{
background-color: orange;
}
</style>
'''
st.markdown(header_style, unsafe_allow_html=True)
However if you want to change the color of the first row of your table you can use :first-child
like the following:
header_style = '''
<style>
table tbody tr:first-child td {
background-color: orange;
}
</style>
'''
st.markdown(header_style, unsafe_allow_html=True)
Let us know if it helped.
Hello mate, thank you for your answer, but how i can implement this code in my python file??
@Tiago_Galvao you can simply add the code to your python file the same way it’s given.
If you have a problem with that, feel free to share the code of your file.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
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.
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.
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.
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.