Skip to content
New issue

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 footer hiding doesn't work in Gradio 5 #9663

Closed
1 task done
FBR65 opened this issue Oct 11, 2024 · 1 comment
Closed
1 task done

The footer hiding doesn't work in Gradio 5 #9663

FBR65 opened this issue Oct 11, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@FBR65
Copy link

FBR65 commented Oct 11, 2024

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? 🔎

  • I have searched and found no existing issues

Reproduction

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;
}

Screenshot

No response

Logs

No response

System Info

Linux Ubuntu
Gradio 5.0.1

Severity

I can work around it

@FBR65 FBR65 added the bug Something isn't working label Oct 11, 2024
@abidlabs
Copy link
Member

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants