ESC portal - Login widget customization

siddhant4407
Tera Contributor

Hi,
I want to customize the ESC portal Login page. I am trying to center the Login text. For this I have used text-align: center, but changes are not reflecting. 
Also I want to replace the text with image. Please provide the solution for text and image as well. 
Thank you in advance.

login google.png

 

1 ACCEPTED SOLUTION

shivaniamborkar
Tera Expert

Hi @siddhant4407 , 
Try the below steps, it definitely works!
1)Go to Service Portal->Pages
2)Search for record having ID is 'login'. Open the record.
3)Add the below styling in 'Page Specific CSS'.

.panel-heading {
    padding: 0 rem !important;
    text-align: center !important;
}

4)Below is the attachment of how the page will look.

shivaniamborkar_0-1716975417704.png

5)Now go to the ESC portal. Log out and the changes will reflect 

shivaniamborkar_1-1716975619836.png



View solution in original post

4 REPLIES 4

Anirudh Pathak
Mega Sage

Hi @siddhant4407,

1. Clone the Login widget

AnirudhPathak_0-1716879832471.png

2. In CSS section of the Cloned widget add the below line -

.panel-title{
text-align: center;
}

Below is the screenshot for your reference

AnirudhPathak_3-1716879958320.png

3. Attach the cloned widget to the login page. Go to the login page and click on instance

 

AnirudhPathak_4-1716880067677.png

4. Update the widget from Login to Cloned widget(select the name of the cloned widget you created in step 1)

AnirudhPathak_5-1716880166928.png

 

 

You should be able to center the text following the above steps.

Tried this but it's not working

shivaniamborkar
Tera Expert

Hi @siddhant4407 , 
Try the below steps, it definitely works!
1)Go to Service Portal->Pages
2)Search for record having ID is 'login'. Open the record.
3)Add the below styling in 'Page Specific CSS'.

.panel-heading {
    padding: 0 rem !important;
    text-align: center !important;
}

4)Below is the attachment of how the page will look.

shivaniamborkar_0-1716975417704.png

5)Now go to the ESC portal. Log out and the changes will reflect 

shivaniamborkar_1-1716975619836.png



siddhant4407
Tera Contributor

Thank you @shivaniamborkar  it did work!