Service Portal - Adding the footer is not staying at the end of the page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-17-2021 08:36 AM
I have added footer to the portal and I don't want it to be a fixed footer on the portal so I unchecked the 'Fixed Footer' check box but now it's coming up at middle of the page where the widget ends.
How can I fix the footer to move to the end of the page and shows only when the page is scrolled to the end.
Thank you in advance!
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-17-2021 09:10 AM
can you try that in page-specific css in the ticket page?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-17-2021 09:15 AM
you can try this as well
section.page {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
section.page.body {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-17-2021 10:38 AM
Hi Sai Kurmar,
I added it to the 'ticket' and 'standard ticket' page at it's still the same behavior.
I don't know why is not working for only this page.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2024 10:56 AM - edited ‎06-28-2024 10:57 AM
Hi @Kirthi2
we are also facing the same issue can you please provide the solution how you have achieved.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-08-2025 03:42 PM
Thanks, I had this issue after upgrading to Yokohama Patch 1. adding the above into the portal theme CSS Variables worked.