EcoLink - 4655BC0-R - Dashboard Tile

New user migrating from ST.

How do we get the dashboard tile for these sensors to display all three pieces of info on the same tile?

Status
Battery
Temp

If I use "Contact Sensor" template I get battery and status, If I select the "temperature" template I of course get that.

Would prefer to get all 3 on one tile if possible.

I use tile overlays with some CSS, i.e. this is actually 3 tiles:

PNG image

or:
(2 tiles)
PNG image

ok, seems I'll have to learn playing around with CSS much sooner than I wanted to :woozy_face:

no way to just tweak the template is there?

Thanks!

For the 2 tile, the overlay tile is an attribute tile and the CSS (you’ll need to change the ID number)is:

#tile-18 {
       background: transparent;
       width:75%;
       height:25%;
       border:none;
       justify-self:end;
}
#tile-18 .tile-title{
       display:none;
}
#tile-18 .material-icons {
       display:none;
}
#tile-18 .tile-primary::after{
       font-size: 10px;
       content:" °F";
}