Employee Center footer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
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
2 hours ago
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
an hour ago
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
an hour ago
@Divya24 ,
you can center the logo, organization content, and copyright in the footer by customizing the EC footer widget (configured via Theme in your portal) and applying CSS or widget instance styles to override alignment (e.g. using flexbox / text center) so that even when other links are deactivated, your core content stays centered...
If you found my response helpful, please mark it as ‘Accept as Solution’ and ‘Helpful’. This helps other community members find the right answer more easily and supports the community.
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/