Im using a markdown card to display the image of the last person that rang the bell. Because the name of that picture is stored in a helper, I combine this with the path. Unfortunately this can not be done in a standard picture card, but it is working fine in a markdown. (see my code below)
type: markdown
content: >-
}})
Just for visual apearence, I like to give the images rounded corners, like I did with the camera views. For the camera views, I used this card mod code:
card_mod:
style: |
ha-card {
border-radius: 10px;
overflow: hidden;
}
However, this seems not to work with the markdown, because it only styles the outer card, not the (image) contents.
Any ideas how to solve that?