Hi guys,
can anyone tell me how i can change the font to Arial? I try it with
@bottom-right
{
content: counter(page) " / " counter(pages);
font-family: Arial;
font-size: 9pt;
}
and
<p style="font-family:Arial; font-size: 9pt; line-height:0cm">
but it doesnt work.
Hi @serc,
Replace 'Arial' with 'Arial, Helvetica, sans-serif' (combination of family name and generic family).
Re-try with the following:
@bottom-right
{
content: counter(page) " / " counter(pages);
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt;
}
Hope it works!
Thanks
Sireesha
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.