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 h indicates the heading level.
Examples
What you type: <h4>New Procedures</h4> <h5>TRAINING VIDEOS</h5> What 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: What 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> What 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:
- What you type: <p>Our live date will be on January 1st!</p>
- What users see: Our live date will be on January 1st!
Bold
You can bold text using the bold tags: <b></b>. Examples:
- What 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:
- What you type: <i>Update:</i> <p>Our live date will be on <i>January 1st</i>!</p>
- What 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:
- What you type: <p style="color:red">Quoting is suspended due to a hurricane.</p>
- What users see: Quoting is suspended due to a hurricane.
Links
Open in the same window
To have a link open in the same window, use the link tags: <a href="this is your link"></a>. Examples:
- What 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>
- What users see: This is how you add a link that opens in the same window.
Open in a new window
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>. Examples:
- What you type: <p>This is how you <a href="this is your link/url" target="_blank">add a link</a> that opens in a new window.</p>
- What users see: This is how you add a link that opens in a new window.