this post was submitted on 30 Jul 2023
9 points (90.9% liked)
Lemmy Support
4652 readers
1 users here now
Support / questions about Lemmy.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You can upload your own CSS files to a directory of your server to make them available as themes: https://join-lemmy.org/docs/administration/theming.html
Additionally, lemmy-ui has a flag called LEMMY_UI_CUSTOM_HTML_HEADER which I assume allows you to add a JS script to be executed on page load, which you could use to modify the HTML after the fact.
To modify the HTML in a more proper way, you'd have to pull the lemmy-ui project (https://github.com/LemmyNet/lemmy-ui), make your changes and then build your own docker container with it.
Thank you! Exactly what I was looking for.
Well, time to start teaching myself how to create a docker container. Forking will be no issue, but creating the container will be completely new grounds for me. Thanks for the new project idea!