Introduction
To enable administrators to extend the presentation and/or functionality of the portal pages, the following technologies are supported by ManagementStudio:
Technology | Description |
HTML <HEAD> Element | The <head> element of a web page contains meta data about the document, such as the page title, style, and scripts. The HTML Header field in the Portal Page allows a ManagementStudio to specify additional code to inject into the page. For example, the following code links to an additional stylesheet: <link rel="stylesheet" type="text/css" href="myStyle.css"> |
Cascading Style Sheets (CSS) | Control the visual aspect of how HTML elements appear on the screen such as the typeface and fonts used, and the colour of text or backgrounds. For example, the following code changes first level headings (<H1> elements) the type face to Verdana and sets the colour to dark grey: h1 { font-family: Verdana; color: #555; } |
JavaScript (JS) | Programatically modify the structure of the page after it has loaded. For example, the following code could be used to hide the footer of a page: document.getElementById('footer-container').style.display = 'none'; |
CSS supports a collection of 'colour names' that can be used to specify colour instead of (difficult to remember) HEX codes. Our guide on CSS colour lists some of the common names: https://support.managementstudio.com/en/support/solutions/articles/14000122843-html-color-names
Further Support
If you require further support, please visit ManagementStudio's Service Desk to search the knowledge base or create a new support ticket.