Hiding the title and status bars
By default in any application there is a blue title bar (at the top) and a blue status bar (at the bottom) visible in the AMT web client.
These bars can be hidden by changing the amt.css file of the application, which can be found in the folder Client\App_Themes\Application Default\ of your application.
Open the file Amt.css in a text editor, search for the following lines and uncomment them:
/* To hide the title and status bar uncomment the following settings
.AppTitleBar,
.AppStatusBar {
display: none;
}
.AppBodyContentWrapper {
top: 0px;
bottom: 0px;
}
.AppStatusBarFiller {
height: 0px;
}
*/
.AppTitleBar,
.AppStatusBar {
display: none;
}
.AppBodyContentWrapper {
top: 0px;
bottom: 0px;
}
.AppStatusBarFiller {
height: 0px;
}
*/
This can be achieved by moving the */ characters to the end of the top sentence:
/* To hide the title and status bar uncomment the following settings */
.AppTitleBar,
.AppStatusBar {
display: none;
}
.AppBodyContentWrapper {
top: 0px;
bottom: 0px;
}
.AppStatusBarFiller {
height: 0px;
}
.AppTitleBar,
.AppStatusBar {
display: none;
}
.AppBodyContentWrapper {
top: 0px;
bottom: 0px;
}
.AppStatusBarFiller {
height: 0px;
}
This will hide both bars of the application web client, regardless if the application is accessed from the AMT Application Center or as NoFramework web client.