APEX 18.1
The classic report Card template supports a single link/target for the entire card with the CARD_LINK placeholder.
See https://apex.oracle.com/pls/apex/f?p=134181:21
I would like to launch multiple links depending on the card content. One idea that came to mind was to use the CARD_SUBTEXT placeholder with the following HTML Expression
<a href="https://google.com" target="_blank"><span class="fa fa-download"></span></a>
<a href="https://yahoo.com" target="_blank"><span class="fa fa-upload"></span></a>
This works fine but the position of the element changes.
@"fac586" Any ideas on how to retain the position of the card subtext with the icon links?
Thanks