running head format
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;
}
}
- Capture.PNG 35.0 kB
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.
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.
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;
}
}
Please refer the image
- Capture1.PNG 8.9 kB
hi mikeday,
Please update us. We are waiting for you suggestion