kally
12 August 2022 14:32
1
Hello,
how can I change the background color of the note title field in CSS?
I cannot seem to find the correct one in the CSS.
Thank you very much in advance!
Try
userchrome.css
input.title-input {
background-color: red !important;
}
kally
12 August 2022 18:44
3
Thank you so much!
How/where did you find this?
Do you by chance also know how to change these colors (WYSIWYG editor buttons and the date+time field)? They seem to have a different setting.
Also any idea about the note numbers?
Thank you very much in advance and have a great weekend!
Have a read of this as it gives a very quick guide on using the Development Tools built into Joplin to identify css elements.
Joplin has several internal stylesheets that control what Joplin looks like to the user. However two have been provided that allow the user to customise the app. Joplin uses its built-in styles but these two files can be used to override those styles. These files are just like the Cascading Style Sheets (CSS) used when creating web-sites. The files are called userchrome.css and userstyle.css.
userchrome.css allows styling of the app itself, including the Markdown Editor,
userstyle.css allows sā¦