This topic describes how to customize the Forefront Unified Access Gateway (UAG) portal to show only the toolbar and application list, by hiding the portal header, footer, and application tree.
To hide the portal header, footer, and application tree
-
On the Forefront UAG server, open the folder Microsoft Forefront Unified Access Gateway\von\PortalHomePage\App_Themes\Office, and copy the Office.css file to the ...\PortalHomePage\App_Themes\CustomUpdate\Office folder.
-
In the ...\PortalHomePage\App_Themes\CustomUpdate\Office folder, open the Office.css file and make the following changes:
- To hide the header, replace the style of
div#topStrip
todisplay:none
. Delete the remaining properties.
To move the toolbar up and replace the hidden header, in thediv#toolbar
style, change the value oftop
totop:0
.
To move up the application list or the displayed application, in thediv#content
style, change the value oftop
totop:40
.
Copy Code div#topStrip { display:none; } div#toolbar { position: absolute; top: 0px; left: 0; height; 40px; width: 100%; min-width: 799px; z-index: 1000; } div#content { margin-top: 10px; position: fixed; top: 40px; left: 0; bottom; 79px; width: 100%; height: 100% min-width: 799px; }
- To hide the tree, replace the style of
contentLeftSideBarCell
todisplay:none
. Delete the remaining properties.
Copy Code .contentLeftSideBarCell { display:none; }
- To hide the footer, replace the style of
div#footer
todisplay:none
. Delete the remaining properties.
Copy Code div#footer { display:none; }
- To hide the header, replace the style of
-
Save the file, and then reload the portal site from a client Web browser.
The portal shows only the toolbar and the application list.