how can i make a Sticky Footer in the service portal?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2020 03:50 PM
Hi,
I'm trying to make a sticky footer on my personal Orlando instance but i cant get a satisfactory solution. I've tried all the sticky footer examples exposed in this other community post (https://community.servicenow.com/community?id=community_question&sys_id=bc1e0faddb9cdbc01dcaf3231f96...) but none of these solutions did work for me.
Here's a photo of my non-working sticky footer:
Thank you.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2020 08:12 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2020 02:52 AM
Thank you satyach for your answer but it doesn't resolve my problem. The "Fixed footer" check just sets fixedly the footer, even if i scroll down the footer doesn't move.
The Sticky footer i want behaves like this:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2023 01:00 PM
Any way to do this without changing anything in the HTML?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-09-2021 04:08 PM
Hello Nistal
Yes this is a common issue if you use the fixed Header and Footer. In order to create a sticky footer I would suggest to make some changes to the CSS of your footer.
The below sample footer which I tried in Orlando version and it working fine.
HTML:
<div class="sample-footer">
${© Copyright of Company Group {{::c.data.time}}}
</div>
CSS:
.sample-footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
padding: 26px 15px;
}
Result :
You can also search for more information regarding Sticky footers below
https://startbootstrap.com/snippets/sticky-footer-flexbox
I hope this information will be helpful. Please mark this answer as correct or helpful if this helps you.
Best Regards
Kiran Teja