function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
shravanshravan 

In Footer I want Left side is current date and right side is page No.

Hi,

 

I generated pdf file using vf. In footer I'm  able to add current date and page no. But  I'm anble to add left side is current date and right side is page no.

 

 

Please Help Me.

Shravan

IspitaIspita

Hi,

Try the following:-

 

@page {
/* Landscape orientation */
size:landscape;
/* Put page numbers in the top right corner of each
page in the pdf document. */
@bottom-right {
content: "Page " counter(page) " of " counter(pages);

@bottom-left {
content: "Date "  env(date);
}

 For more refer to the following link:-

 

http://www.w3.org/TR/css3-gcpm/

 

Hope this helps....