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)

3 REPLIES 3

M Iftikhar
Mega Sage

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.

 

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.

kaushal_snow
Mega Sage

@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.

 

Thanks and Regards,
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/