KirillRepinArt / ChatGPT-UI

ChatGPT CSS style
Apache License 2.0
11 stars 1 forks source link

Ability to disable "ChatGPT Interface" in background? #4

Closed jamesbraza closed 1 year ago

jamesbraza commented 1 year ago
ChatGPT Interface screenshot

Is there some way to disable the "ChatGPT Interface" text in the background of the chat?

(I am naming my AI something besides ChatGPT)

KirillRepinArt commented 1 year ago

You might have to do manually inside the CSS file.

/* BACKGROUND */
.gradio-container {
    background-color: #343541 !important;
    padding: 0 !important;
    background-image: url('data:image

In the background section, you'd need to remove background-image: url... line.

jamesbraza commented 1 year ago

Ah okay, I figured it'd be that. Is there some way this CSS's text can be parameterized, instead of being a static base64 encoded image?

Otherwise, feel free to close this out