Page 1 of 1
Can I make footnotes apear on the end of page in CSS temlate for customizing Author mode.
Posted: Fri May 29, 2020 3:49 pm
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
Re: Can I make footnotes apear on the end of page in CSS temlate for customizing Author mode.
Posted: Sun May 31, 2020 8:18 am
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
Re: Can I make footnotes apear on the end of page in CSS temlate for customizing Author mode.
Posted: Tue Jun 02, 2020 12:41 pm
by vkrupa
Thank you for your reply, Radu