Forum How do I...?

running head format

newgen
In page header we have 2 type of format bold and roman.

@page :left{
@top-left{
content: counter(page)"\2003"string(pn)"\2002"string(pt);
font-size:7.8pt;
font-family:"Bliss Pro ExtraLight", sans-serif;
}
}
  1. Capture.PNG35.0 kB
mikeday
This will require using separate margin boxes (@top-left and @top-center for example) or flowing an element from the document to the margin box, as only elements can have complex formatting.
newgen
Thanks Mikeday

"separate margin boxes (@top-left and @top-center for example)" are working fine but for the double/more digit page numbers the inbetween space are varying. And is there any option to maintain the fixed spaces?.

And the second option is not possible becoz every page has the running head and can't able to flow from the margin.
newgen
for your reference


@page :left{
@top-left{
content: counter(page)"\2003"string(pn)"\2002";
font-size:7.8pt;
font-family:"Bliss Pro Medium", sans-serif;
text-align:left;

/* position:relative; */
}
@top-center{
content: string(pt);
font-size:7.8pt;
font-family:"Bliss Pro ExtraLight", sans-serif;
text-align:left;
margin-left:-220pt;
margin-right:-200pt;
}
}
newgen
Please refer the image
  1. Capture1.PNG8.9 kB
newgen
hi mikeday,

Please update us. We are waiting for you suggestion