Problem with markdown card - SOLVED -

I am having problems with centering an image in a markdown card.

          - type: markdown
            content: >

              ![Amazon Music](/local/images/amazonmusic.jpeg)

How to make this image centered ?

Try HTML/CSS inside:


<div style="text-align:center">
  <img src="/local/images/amazonmusic.jpeg" alt="Amazon Music"/>
</div>

1 Like