I have several First Alert ZCOMBO gen 1 fire/co alarms. I've paired them successfully but can't find a dashboard tile for a combo smoke/co alarm. I have to create two separate tiles for this. Is there a tile, trick/hack that allows me to show both on the same tile?
Still two tiles, but if you overlay the first with the second and add a little CSS:
#tile-71 .tile-primary{
display:block;
position:relative;
width:50%;
top:33%;
}
#tile-72 {
border-left:none;
background:transparent;
}
#tile-72 .tile-primary{
display:block;
position:relative;
left:33%;
top:33%
}
#tile-72 .tile-title {
display:none;
}
That's a great idea! Didn't know you could do this. Thanks!
1 Like