Custom CSS to Remove Dashboard Link Name

I am trying to make a Link tile (it links to one of my dashboards), fully transparent. This tile is not the Legacy Link tile, but rather the link tile. When you set up this tile on the dashboard, you can set the "Link URL" and the "Link Name". If you do not set the link name, the tile will display the entire link url (or at least try to), if you set the "Link Name" then the tile will display the name you type in. I am trying to make either this link url or the name transparent. I do not want to do this in tile templates as I have other Link tiles I do not want to become transparent.

Is there custom css, I could use to make everything transparent?

If you want the whole tile to be completely transparent but still functional, this would work. On the 1st line, substitute in your specific Tile ID ## which is indicated on the top of the 3-dot menu of the tile in question and only that specific tile will be affected.

#tile-11 {
 opacity: 0
}
1 Like

Thank-you, worked a charm.