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

[Suggestion] Add your own Logo #48

Closed
mariushosting opened this issue Jun 5, 2023 · 1 comment · Fixed by #209
Closed

[Suggestion] Add your own Logo #48

mariushosting opened this issue Jun 5, 2023 · 1 comment · Fixed by #209
Labels
enhancement New feature or request

Comments

@mariushosting
Copy link

It would be interesting to be able to put your own logo in the top left corner instead of the default one.

@thomiceli thomiceli added the enhancement New feature or request label Jun 6, 2023
@thomiceli thomiceli added this to the v1.5 milestone Jul 2, 2023
@Jas-SinghFSU
Copy link

Jas-SinghFSU commented Dec 14, 2023

For those wanting to do this until it's officially implemented; you can do so by injecting css into your reverse proxy (NGINX).

It's not a pretty solution, but it works.

If you're using NGINX, you can add the following below your existing config

    location / {
        # your existing config 

        ############################
        # Custom CSS
        ############################
        proxy_set_header Accept-Encoding "";

        # your custom CSS rules go here
        sub_filter
        '</head>'
        '<style> .flex-shrink-0 a .object-cover { content: url(your_image_url_here); } </style>
        </head>';
    }

Make sure that you DON'T include quotes in your image url.

@thomiceli thomiceli removed this from the v1.5 milestone Dec 17, 2023
@thomiceli thomiceli linked a pull request Jan 11, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants