service portal footer configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2023 04:03 AM
hello!
I have created a widget to use it as footer and put it from page designer at the bottom of the page.
But as you can see , there are white spaces between footer and the bottom of the page. I know that's happening because it's a widget , not a real footer.Is this a right way to create footers? If yes, Is there any way to disappear these spaces?
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2023 05:10 AM - edited 03-08-2023 05:11 AM
Hi @Vasilis Anastas ,
Try below CSS script:
.footer {
bottom: 0px; //Footer position from Bottom
}
e.g. In my widget main Div class is footer and I have set its position using CSS. So in your widget there will be main div class, with the help of this you can change its position.
Hope this helps
please mark my answer correct if this helps you.
Thank you