Dan,
Thanks for the reply. I’m relieved that it wasn’t an obvious feature and I missed it. Also glad that it’s in the to-do list.
Here is the kluge that I’ve come up with using CSS to style. It’s nowhere near as flexible as a solution that the plugin would offer but it will serve for a while. Changing the documents will be messy if needed and of course I have to have many such widgets with page visibility in play to filter results. Still… it works for now. Thanks again. jc
<div class="widget-forms">
<a href="https://site-name/wp-content/uploads/document-1.pdf" target="_blank">
<figure>
<img src="https://site-name/wp-content/uploads/pdf-icon.png" width="48px" height="48px" />
<figcaption class="figcaption-widget">Document 1 Name</figcaption>
</figure>
</a>
<br>
<a href="https://site-name/wp-content/uploads/document-2.pdf" target="_blank">
<figure>
<img src="https://site-name/wp-content/uploads/pdf-icon.png" width="48px" height="48px"/>
<figcaption class="figcaption-widget">Document 2 Name</figcaption>
</figure>
</a>
</div>