Overview:
The end-user needs to remove a document, but the red X icon next to the Email Fragment section is not visible.
Root Cause:
The icon is automatically embedded into the Approved Email page using the <IMG> HTML tag. If the email template has a CSS for the IMG element including the max-width: 100%; property, it overrides the default style and the icon is not visible.
For example:
img { outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; clear: both; display: block; }
Solution:
The Approved Document HTML needs to be modified by removing the max-width: 100%; property from the CSS.
Related Documentation:
N/A