Add a widget at the footer of the Service Portal Homepage with the Service Desk Phone Number and a reference to 24x7 support.

SNOW46
Tera Contributor

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.

find_real_file.png

Can anyone let me know how to achieve this requirement?

 

Thanks,

SNOW@Das

13 REPLIES 13

Prasun
Giga Guru

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.

SNOW46
Tera Contributor

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.

VigneshMC
Mega Sage

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>

 and
css as

.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

 

 

VigneshMC
Mega Sage

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>​
and
css as

.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