Employee Center footer

Divya24
Tera Contributor

In employee center footer, how to make logo,org content and copyright to appear at centre as the links present next to that is modified(made active false)

6 REPLIES 6

Community Alums
Not applicable

Hi @Divya24

 

According to my research, there's a out of the box widget named "Employee Center Footer" in which you can do changes to center the desired elements. You just need to do changes in CSS section.

MIftikhar_0-1759251860034.png

 

Hope this helps!

 

Thanks & Regards,
Muhammad Iftikhar
If my response helped, please mark it as the accepted solution and helpful so others can benefit as well.

 

What is the changes that needs to be done. Can you please specify the same

Medi C
Giga Sage
Giga Sage

Hi @Divya24,

Could you please navigate to the following style sheet:
https://YOUR_INSTANCE.service-now.com/nav_to.do?uri=sp_css.do?sys_id=5000dad71bb8f85047582171604bcb4...

And add the following CSS at the end of the file:

.sf-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

/* Reset the default left/right alignment */
.sf-bottom-left,
.sf-bottom-right {
  display: contents; /* flatten children so they sit directly in flex row */
}

/* Make sure copyright doesn't float right */
.sf-copyright {
  text-align: center !important;
  margin: 0;
}

 

I have just tried it on my PDI, it is on Zurich and I could get the following results:

MediC_0-1759253404680.png

 


If you found this helpful, please hit the thumbs-up button and mark as correct. That helps others find their solutions.

Hi @Divya24,

Did the solution worked out for you? If so, could you please close the thread by accepting my solution and marking as helpful. Otherwise, please let us know if there are any issues so that I can support further.


If you found this helpful, please hit the thumbs-up button and mark as correct. That helps others find their solutions.