Show & hide the top of page links - On Premises: 6.4

Publishing

The Top of Page link displays automatically when a page's content extends beyond the current length of the Web Help window. However, if you don't want to use the link you can disable it by modifying the style rule in the webhelp.css file.

To hide the top of page link:

  1. Open the webhelp.css in Notepad and locate the Top Of Page link.

    /*----Top Of Page link----*/

    .topOfPage { font-size: 11px; padding-left: 10px; padding-bottom:5px;}

  2. Add the text display: none; to the style rule.

    .topOfPage { font-size: 11px; padding-left: 10px; padding-bottom:5px; display: none;}

  3. Save the changes to the webhelp.css file.

Enable the link again by removing the display attribute and value in the style rule.