Administrators can update the Provider Administrator portal dashboard in several ways.
To update the Provider Administrator portal dashboard:
- On your computer, complete one of the following steps:
- Open two browsers, such as Firefox and Chrome, and then open a window in each browser.
- Open one browser, and then open a window and an incognito window.
- In both windows, complete the following steps:
- In the BriteCore menu, select Settings.
- In the Settings menu, select System Wide, and then select Login Information.
- In one browser window, in the Login Information screen, under Dashboard Text, make applicable changes, and then select Save.
- Refresh the other browser window to see the effects of your changes.
Screen elements
You can edit the following screen elements to customize the dashboard.
Headers
You can edit header text and text size.
Note: The number after the letter hindicates the heading level.
Examples
When you type:
<h4>New Procedures</h4>
<h5>TRAINING VIDEOS</h5>
Users see:
New Procedures
TRAINING VIDEOS
Section divider
You can use the <hr/> HTML tag to add a horizontal line between sections.
Text
Using HTML tags and inline CSS, you can add or edit lists and messages on the dashboard.
Lists
You can use HTML tags to create two types of lists:
- To create an unordered list, use the <ul></ul> tags.
- To create an ordered list, use the <ol></ol> tags.
Note: Both list types use the <li></li> tags for list items.
Examples:
When you type:
<p><b>Important messages:</b></p>
<ul>
<li>The office will close at 3:00 PM today.</li>
<li>Please shut down your computer at the end of each day.</li>
</ul>
Users see:
Important messages:
• The office will close at 3:00 PM today.
• Please shut down your computer at the end of each day.
Messages
Paragraphs
You can add paragraphs using the paragraph tags: <p></p>.
Examples:
When you type:
<p>Our live date will be on January 1st!</p>
Users see:
Our live date will be on January 1st!
Bold
You can bold text using the bold tags: <b></b>.
Examples:
When you type:
<b>Update:</b> <p>Our live date will be on <b>January 1st</b>!</p>
What users see:
Update:
Our live date will be on January 1st!
Italics
You can italicize text using the italics tags: <i></i>.
Examples:
When you type:
<i>Update:</i>
<p>Our live date will be on <i>January 1st</i>!</p>
Users see:
Update:
Our live date will be on January 1st!
Color
You can use inline CSS (style=”color:red”) inside of an HTML tag to add color to your text.
Examples:
When you type:
<p style=”color:red”>Quoting is suspended due to a hurricane.</p>
Users see:
Quoting is suspended due to a hurricane.
Links
To have a link open in the same window, use the link tags: <a href=”this is your link”></a>.
Examples:
When you type:
<p>This is how you <a href=”this is your link/url”>add a link</a> that opens in the same window.</p>
Users see:
This is how you add a link that opens in the same window.
Note: To have a link open in a new window, use the link tags with the target attribute: <a href=”this is your link” target=”_blank”></a>.