@EngrAg81 Ok, I think this is what you would edit to change the way those numbers are displayed, ie, High/low temp. This will be in the custom.css.
CX3 .cellHeader .cellWeather .maxTemp {
color: white;
font-weight: bold;
font-size: 90%;
}
.CX3 .cellHeader .cellWeather .minTemp {
color: darkgray;
font-weight: normal;
}
.CX3 .cellHeader .cellWeather .temperature {
display: var(--displayWeatherTemp);
padding-left: 5px;
font-size: 90%;
}
.CX3 .cellHeader .cellWeather .maxTemp::before {
content: " \25b2";
}
.CX3 .cellHeader .cellWeather .minTemp::before {
content: " \25bc";
}
.CX3 .cellHeader .cellWeather .temperature::after {
content: "° ";
}