-
|
Is there a way to hide the weather location? I noticed that this was addressed in commit a03dd74, so it should be possible, but I haven’t been able to figure out how to enable it. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Not via a built in setting, but you should be able to do this using custom CSS: |
Beta Was this translation helpful? Give feedback.
-
|
Awesome |
Beta Was this translation helpful? Give feedback.
Not via a built in setting, but you should be able to do this using custom CSS:
.weather-location {
display: none;
}
or:
.weather-location {
display: none !important;
}
or:
#clockweather .weather-location {
display: none;
}
Try them in that order.
See here:
https://immichframe.online/docs/getting-started/configuration#custom-css