johnvpr
ServiceNow Employee
Options
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
06-05-2024
01:03 PM
In some cases, you want to have a simpler footer, with just the logo and links as this one:
To do it you can use the CSS and edit the sp_theme - CSS Variables by adding this code:
/*********************************** JP FOOTER ***********************************************/
// jp logo container height
.scrub-footer .sf-main {
// background-color:#080808 !important;
height:80px;
}
// jp image height
.scrub-footer .img {
width: 20px;
}
// jp hide OOB links
.scrub-footer .sf-main .sf-links-container .sf-group
{
display: none;
}
// jp move copyright field (text -> new links) to left
.scrub-footer .sf-main .sf-logo-container .sf-logo-content {
position: absolute;
right: 0;
top: 5px;
padding-top: 28px !important;
}
// jp left text
.scrub-footer .sf-main {
position: relative;
}
// jp logo
.scrub-footer .sf-main .sf-logo-container .sf-logo {
padding-top: 0px !important;
padding-bottom: 20px !important;
padding-left: 20px !important;
max-height: 140%;
}
And change the "Employee Center Footer" sn_ex_sp_footer like this:
- 847 Views
1 Comment
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.