How to show welcome message beside portal logo in Employee center Homepage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 02:07 AM
How to show welcome message beside portal logo in Employee center Homepage

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 02:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 02:19 AM
from screenshot there is welcome to Ec right , i need that to be beside logo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 02:33 AM
We can write script in Homepage search
On HTML:
<h2 class = "hello" > Welcome to ESC {{data.user}}. ?</h2>
On server Script:
(function() {
data.user =gs.getUser().getFirstName();
})();
On css : (Add this type of CSS class in ur HTML code, only if require)
.hello{
color: #FFFFFF;
font-size: 24px;
font-weight: 500;
padding-left: 50px;
line-height: 0.3;
}
Mark if it is helpful for you.