Symptoms
When integrated into the Access Gateway Advanced Edition navigation page, Web Interface 4.5 sites fail to display Program Neighborhood folder names.

Cause
This issue is caused by browser interpretation of a white space style attribute, given that by default there is always some white space after the folder name in the HTML.
Resolution
For Web Interface 4.5:
1. On the Web Interface 4.5 server, locate the applist.inc file within the <siteroot>\app_data\site\include folder. For example:
C:\Inetpub\wwwroot\Citrix\AccessPlatform\app_data\site\include\applist.inc
2. Replace the file with the copy attached to this article.
-Or-
Make the following changes manually:
For Web Interface 4.5.1:
1. On the Web Interface 4.5.1 server, locate the style.inc file within the <siteroot>\app_data\site\include folder. For example:
C:\Inetpub\wwwroot\Citrix\AccessPlatform\app_data\site\include\style.inc
2. In the style.inc file, locate the following lines:
table#appLinks td
{
padding: <%=( bUseNavUIStyle ? "2px" : "10px 15px 10px 15px" )%>;
vertical-align: top;
}
3. Add a white-space: nowrap; line as shown below in bold:
table#appLinks td
{
padding: <%=( bUseNavUIStyle ? "2px" : "10px 15px 10px 15px" )%>;
vertical-align: top;
white-space: nowrap;
}
4. Save the style.inc file. The changes take effect immediately.
More Information
These steps must be repeated if you move or repair the Web Interface site using the Access Management Console.