Can I make footnotes apear on the end of page in CSS temlate for customizing Author mode.

Oxygen general issues.
vkrupa
Posts: 4
Joined: Fri May 29, 2020 3:44 pm

Can I make footnotes apear on the end of page in CSS temlate for customizing Author mode.

Post by vkrupa »

Hello, I am trying to display footnotes at the bottom of page in Author mode. Is there any way to make it with custom css?

Thanks, Vasyl
Radu
Posts: 9472
Joined: Fri Jul 09, 2004 5:18 pm

Re: Can I make footnotes apear on the end of page in CSS temlate for customizing Author mode.

Post by Radu »

Hi Vasyl,

Oxygen's Author visual editing mode does have some limited support for position absolute like :

Code: Select all

fn {
    display:block;
    position:absolute;
    bottom: 0px;
}
but the problem is that once the footnote descends, there should be some kind of marker left in place and I'm not sure how this could be done.

Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
vkrupa
Posts: 4
Joined: Fri May 29, 2020 3:44 pm

Re: Can I make footnotes apear on the end of page in CSS temlate for customizing Author mode.

Post by vkrupa »

Thank you for your reply, Radu
Post Reply