Hide an icon and a title in the tile card

Too complex))))
“Two days before the day after tomorrow” = “Today”.

card_mod:
  style: |
    ha-tile-icon {
      display: none;
    }
5 Likes

This is an old topic. But my research led me here. The solutions given here didn’t work for me. However, combining the given solutions and adding a small modification made it work.

card_mod:
  style: |
    ha-card {
      height: auto !important;
      padding-top: 10px !important;
    }
    ha-card .content {
      display: none !important;
    }

I think maybe it broke again, I’ve tried almost all of the options in this thread and it still shows the icon + item name.

However, one post indicating something like ha-tile-icon with display: none; did work to hide just the icon. Looking around to see if I can figure out what the name is called so I can hide it too.

OK, it’s called ha-tile-info if you want to hide it. Here’s my working code:

        card_mod:
          style: |
            ha-card {
              background: none;
              border: none;
              
            }
            ha-tile-info {
                display: none;
            }
            ha-tile-icon {
              display: none;
            }