Slogan text colour always black

I’ve updated to NC 25.0.1. I notice that the slogan text is always black - regardless which background colour is selected. Can I customize the text colour somehow?
A similar question was already asked in Theming app should allow the Slogan color to be changed. · Issue #13181 · nextcloud/server · GitHub

Hi @hfm158

In order to customize the color of the slogan, respectively the entire footer, you can install the Custom CSS app and then add the following code to the Custom CSS field under “Administration Settings → Theming”:

#body-login footer p {
    color: #ffffff;
}

Hope this helps.

Disclaimer: I’m not an expert when it comes to CSS, so I can’t guarantee this won’t have any unwanted side effects. But I didn’t see any after a short test on my test instance :slight_smile:

1 Like

Yes, it does help. Thank you!

1 Like