Employee Center footer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-30-2025 09:40 AM
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)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-30-2025 10:04 AM
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.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
What is the changes that needs to be done. Can you please specify the same
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-30-2025 10:30 AM
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:
If you found this helpful, please hit the thumbs-up button and mark as correct. That helps others find their solutions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-02-2025 04:49 AM
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.
