We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The solution offered in "how to delete or hidden the page of use gradio default footer container #6696" doesn't work any more
import gradio as gr css_file = "CSS_components.css" with gr.Blocks(title = "Hi there", css=css_file, fill_height=True) as demo: test = gr.Textbox() demo.launch()
css file:
footer { display: hidden }
nore
footer:has(.built-with) { display: none !important; }
No response
Linux Ubuntu Gradio 5.0.1
I can work around it
The text was updated successfully, but these errors were encountered:
Hi @FBR65 please use the new css_paths parameter in Blocks instead to supply css files. This is included in the list of breaking changes here: #9463
css_paths
Blocks
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The solution offered in "how to delete or hidden the page of use gradio default footer container #6696" doesn't work any more
Have you searched existing issues? 🔎
Reproduction
css file:
footer {
display: hidden
}
nore
footer:has(.built-with) {
display: none !important;
}
Screenshot
No response
Logs
No response
System Info
Severity
I can work around it
The text was updated successfully, but these errors were encountered: