Navigation Bar Color Override Option #7147
iotdetective
started this conversation in
Guides
Replies: 1 comment 1 reply
-
awesome, I had been looking for this. Have you found a way to edit the icon colors and search bar? I'm interested in changing them to a light/white color scheme. edit:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Wanted to share this CSS override for the site navigation bar color change, since it was a question I didn't see answered online elsewhere and everything I read says that it currently is not possible. My workaround doesn't apply to the Wiki.js administration area, but does apply to the public facing sections of my Wiki.js site (minus the the tag explorer page for some reason). When I couldn't find a solution for this modification I started exploring things with the inspect element tool in Google Chrome, I was able to come up with the following sample CSS Override which you can add in the Administration Area under: Themes > Code Injection > CSS Override and click apply:
Easy copy and paste code (just change to the desired color):
.nav-header-inner .v-toolbar__content { background-color: midnightblue; } .v-application .black { background-color: midnightblue !important; }
I am using the Dark Theme, but I just tested it with the light theme and it works.
Proof of Concept:
Beta Was this translation helpful? Give feedback.
All reactions