Back to the IdentityIQ 8.0 overview: What's New in IdentityIQ 8.0
New context-sensitive help has been added to these UIs:
You can customize some of the appearance of the context-sensitive help, to reflect your company's branding, including the cascading style sheets (CSS), the logo, and the window title.
The context sensitive help inherits any other system-wide CSS customizations you have implemented. The context-sensitive help windows use the ui-custom.css file for CSS customizations.
<entry key="contextualHelp">
<value>
<Map>
<entry key="accessReviewDetailURL">
<value>
<ContextualHelpItem enabled="true" height="600" homeUrl="certification/certification.jsf" key="accessReviewDetailURL" title="ui_access_review_detail_help" type="URL" url="ui/help/accessReview/access-review-detail-help.html" useTemplate="true" width="1024"/>
</value>
</entry>
<entry key="accessReviewSummaryCardURL">
<value>
<ContextualHelpItem enabled="true" height="600" homeUrl="certification/certification.jsf" key="accessReviewSummaryCardURL" title="ui_access_review_summary_card_help" type="URL" url="ui/help/accessReview/access-review-summary-card-help.html" useTemplate="true" width="1024"/>
</value>
</entry>
3. To change the logo, CSS, or title of a help page, use the values described below.
To customize the logo, use logoPath to point it to an image of your choice. The path is relative to the IdentityIQ installation directory. For example, the value below modifies the logo in the Access Review Details page context-sensitive help, to point to a logo file in a customer-created [installDirectory]/custom/ui folder. There is also an option to set specific descriptive alt text for the logo image, which may be useful for meeting accessibility requirements.
<entry key="accessReviewDetailURL">
<value>
<ContextualHelpItem logoPath="custom/ui/MyOwnLogo.jpg" logoDescription="My Own Alt Text for This Logo" enabled="true" height="600" homeUrl="certification/certification.jsf" key="accessReviewDetailURL" title="ui_access_review_detail_help" type="URL" url="ui/help/accessReview/access-review-detail-help.html" useTemplate="true" width="1024"/>
</value>
</entry>
To customize the context-sensitive help's window title, which can help with accessibility, use the title value. Be sure to replace the default title that is provided out of the box, rather than adding a second title key. For example:
<entry key="accessReviewDetailURL">
<value>
<ContextualHelpItem logoPath="custom/ui/MyOwnLogo.jpg" logoDescription="My Own Alt Text for This Logo" enabled="true" height="600" homeUrl="certification/certification.jsf" key="accessReviewDetailURL" title="Access Reviews for My Company" type="URL" url="ui/help/accessReview/access-review-detail-help.html" useTemplate="true" width="1024"/>
</value>
</entry>