I would like to ask you if you found any ways of how we can add footer with page numbers in HTML Views...What I want to do is when I press the print button then to create the pages with page 1/2, page 2/2 etc as a footer. Do @page and @media print work in Zoho? because I tried the following and it does not do anything
@page :left {
@bottom-left {
content: counter(page);
}
}