Responsive footer not at bottom of page
Responsive footer not at bottom of page
Oxygen 20.0, webhelp responsive tiles.
When I'm looking at the page full screen on a large monitor, the footer is not at the bottom of the page; this results in some extra white space at the bottom.
Here is an image:
https://i.imgur.com/NY6Zi0O.jpg
When I'm looking at the page full screen on a large monitor, the footer is not at the bottom of the page; this results in some extra white space at the bottom.
Here is an image:
https://i.imgur.com/NY6Zi0O.jpg
-
- Posts: 52
- Joined: Mon Jun 12, 2017 10:50 am
Re: Responsive footer not at bottom of page
Hello,
I can confirm this is a bug. We've logged this on our issue tracking tool, so we will notify you when/if this functionality will get implemented
I can confirm this is a bug. We've logged this on our issue tracking tool, so we will notify you when/if this functionality will get implemented
Regards,
Cosmin
--
Cosmin Andrei
oXygen XML Editor and Author Support
Cosmin
--
Cosmin Andrei
oXygen XML Editor and Author Support
Re: Responsive footer not at bottom of page
Great thanks! Please add my name to the ticket so I can get a notification.
In the meantime, is this something that I can fix with CSS?
In the meantime, is this something that I can fix with CSS?
Re: Responsive footer not at bottom of page
Hello,
I'm afraid there is no simple CSS customization we could think of, other than altering the entire layout of the WebHelp output.
We will let you know as soon as a fix will be implemented for this.
Regards,
Costin
I'm afraid there is no simple CSS customization we could think of, other than altering the entire layout of the WebHelp output.
We will let you know as soon as a fix will be implemented for this.
Regards,
Costin
Costin Sandoi
oXygen XML Editor and Author Support
oXygen XML Editor and Author Support
-
- Posts: 22
- Joined: Wed Jun 20, 2018 11:30 am
Re: Responsive footer not at bottom of page
Hi Costin,
Is it possible this is solved in Oxygen 21.0 for tiles, but I think the problem is still there for responsive webhelp "tree".
Could you please confirm.
Thanks.
Is it possible this is solved in Oxygen 21.0 for tiles, but I think the problem is still there for responsive webhelp "tree".
Could you please confirm.
Thanks.
Re: Responsive footer not at bottom of page
Hi,
It's not very cleat what you mean by
Do you refer to the tree layout template?
Regards,
Costin
It's not very cleat what you mean by
.the problem is still there for responsive webhelp "tree"
Do you refer to the tree layout template?
Regards,
Costin
Costin Sandoi
oXygen XML Editor and Author Support
oXygen XML Editor and Author Support
-
- Posts: 22
- Joined: Wed Jun 20, 2018 11:30 am
Re: Responsive footer not at bottom of page
Hi Costin,
Indeed that's what I mean: Oxygen tree layout template
Indeed that's what I mean: Oxygen tree layout template
Re: Responsive footer not at bottom of page
I double checked and the status of this issue in our internal tracking system is still "open". So this should still occur for both layout types (tiles and tree).
Maybe you have multiple lines of tiles and this generates the illusion of a well-placed footer, but the problem still persists.
We will let you know when a fix will be implemented.
Maybe you have multiple lines of tiles and this generates the illusion of a well-placed footer, but the problem still persists.
We will let you know when a fix will be implemented.
Costin Sandoi
oXygen XML Editor and Author Support
oXygen XML Editor and Author Support
-
- Posts: 392
- Joined: Thu Jan 23, 2014 2:29 pm
- Location: Hamburg
- Contact:
Re: Responsive footer not at bottom of page
Hi,
As a CSS workaround, you could try changing .wh_footer { position: relative; } to .wh_footer { position: fixed; }. That would make the footer stick to the bottom of the browser window. However, I haven't done any thorough testing so this fix might have undesired side-effects.
Best regards,
Frank
As a CSS workaround, you could try changing .wh_footer { position: relative; } to .wh_footer { position: fixed; }. That would make the footer stick to the bottom of the browser window. However, I haven't done any thorough testing so this fix might have undesired side-effects.
Best regards,
Frank
Frank Ralf
parson AG
www.parson-europe.com
parson AG
www.parson-europe.com
Re: Responsive footer not at bottom of page
Hello everyone,
I was faced with the same problem some months ago and solved it by using this approach: https://codepen.io/cbracco/pen/zekgx.
With the CSS properties shown there you can achieve a footer which sticks to the bottom of the page and not of the viewport.
It seems a bit weird to me that CSS does not offer a "simple" solution for such an issue but there's no need to complain as I couldn't see any drawbacks so far.
Best regards,
Anton
I was faced with the same problem some months ago and solved it by using this approach: https://codepen.io/cbracco/pen/zekgx.
With the CSS properties shown there you can achieve a footer which sticks to the bottom of the page and not of the viewport.
It seems a bit weird to me that CSS does not offer a "simple" solution for such an issue but there's no need to complain as I couldn't see any drawbacks so far.
Best regards,
Anton
-
- Posts: 392
- Joined: Thu Jan 23, 2014 2:29 pm
- Location: Hamburg
- Contact:
Re: Responsive footer not at bottom of page
Many thanks for the pointer, Anton. That's indeed the more elegant solution.
Best regards,
Frank
Best regards,
Frank
Frank Ralf
parson AG
www.parson-europe.com
parson AG
www.parson-europe.com
Re: Responsive footer not at bottom of page
I was just coming back to this thread to complain about this again, but Anton's situation worked. Thanks!