Skip to main content
Nintex Community Menu Bar
Question

Adding an image to a page

  • July 9, 2024
  • 3 replies
  • 15 views

Forum|alt.badge.img+6

I would like to add an image to the top of each account page.  The image would always be the same regardless of the account selected.  I looked at some of the tutorials but they seem to be showing how to add a different image to each page.  I want to upload 1 image and have it displayed at the top of each account page.  Any suggestions?

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+9

You can add a template field with the following HTML

remember to check allow HTML.


Forum|alt.badge.img+11

Here’s an example of where I use an image with an link. Notice the image is a static resource.

<table><tr>
<td><img src="/resource/quotes32">
</td>
<td><span class="nx-pagetitle-subtitle">Manage Quote Line Items for</span>
<div class="nx-pagetitle-maintitle">
<a href='/{{{Id}}}'>{{{Name}}}</a>
</div>
</td>
</tr>
</table>

Forum|alt.badge.img+6

Moshe / Irvan,

Sorry for the delay, I got pulled away from this for a few days.  I just got back to it today and both your suggestions were very helpful in resolving this issue.  Thank you both very much.