Add a widget at the footer of the Service Portal Homepage with the Service Desk Phone Number and a reference to 24x7 support.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2018 09:33 AM
Hi All,
I have one query that I want to add one section like widget at the bottom of the Service Portal Homepage which will contain Service Desk Phone Number and a reference to 24x7 support within it.
Can anyone let me know how to achieve this requirement?
Thanks,
SNOW@Das
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2018 08:53 PM
Hi,
You can set footer to your service portal from the theme. Just add a footer and HTML/CSS/Javascript code for it and add it in the theme that you're using in Service Portal.
Regards
Prasun
P.S. - Mark Helpful or Correct if helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 03:58 AM
Hi Prasun,
Can you please let me know in details so that it will be helpful for me like what script I need to mention in the footer. Since I am totally new to SP and need to explore new things upcoming.
Awaiting for your response at the earliest.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 04:07 AM
Create an footer in sp_header_footer table
<div class="sample-footer">
Contact Service Desk at xxxxx
</div>
and
.sample-footer {
text-align: center;
padding: 5px;
}
Update CSS as you require.
And add this footer to your portal theme to reflect in your portal

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2018 04:08 AM
Create an footer in sp_header_footer table and add an Body HTML template like
<div class="sample-footer">
Contact Service Desk at xxxxx
</div>
.sample-footer {
text-align: center;
padding: 5px;
}
And add this footer to your portal theme to reflect in your portal