Hello,
is there a possibility to suppress the unit in a TileCard.
e.g. no km/h here
Code
type: tile
entity: sensor.wetterstation_station_wind_speed
name: " "
color: red
vertical: false
features_position: bottom
card_mod:
style:
ha-tile-info$: |
.secondary {
font-size: 2.5em !important;
}
thanks Frank
here my
Frank65:
suppress the unit
i.e. “do not show a unit”?
No, you cannot.
You will have to create a unitless template sensor for that.
woempiej
(Woempiej)
January 21, 2026, 7:43pm
3
Hi,
You can use the standard markdown card without icon
type: markdown
content: "{{ states('sensor.wetterstation_station_wind_speed') }}"
text_only: true
or use mushroom template card incl. a template.
Hi, markdown I allready did, I know there it works, but there are other problems.
I hoped to get the tilecard now like I want it, as this has now this wonderful primary secondary option.
woempiej
(Woempiej)
January 21, 2026, 7:59pm
7
Try Mushroom. The card does support tab action types
Which of this mushroomcards is the best to show just the value
I tried some but when I increase the font it is cut on top and bottom.
woempiej
(Woempiej)
January 23, 2026, 4:45pm
9
type: custom:mushroom-template-card
primary: "{{states('sensor.wetterstation_station_wind_speed') }}"
features_position: bottom
icon: mdi:weather-windy
color: blue
type: horizontal-stack
cards:
- type: custom:mushroom-template-card
primary: "{{states('sensor.wetterstation_station_wind_speed') }}"
features_position: bottom
icon: mdi:weather-windy
color: blue
grid_options:
columns: 3
rows: auto
type: vertical-stack
cards:
- type: custom:mushroom-template-card
primary: "{{states('sensor.wetterstation_station_wind_speed') }}"
features_position: bottom
icon: mdi:weather-windy
color: blue
grid_options:
columns: 3
rows: auto
Frank65
January 23, 2026, 8:54pm
10
Thank you woemiej
That looks good bat my main issue is that I need a tile that uses mostly the whole tile for the font. Exactly that I struggle with the mushroom.
This view comes on a tablet, that shall be readable from 3 meter .
Regards Frank
.