mim alef
mim alef

Reputation: 73

How to change font of default header and footer of print page with css?

How can i change font of default header and footer of print page with css?

i tried this:

   @media print
    {
        *,html,body,title /*i tried all of them!*/
        {
            font: 10px tahoma;
        }
    }

the content of page was changed but no change was happened in font of print page title, url and pagination.(ctrl+p)

this is my print page image to clear my question

Upvotes: 0

Views: 505

Answers (1)

Stickers
Stickers

Reputation: 78686

That can not be changed, it's not part of the web page itself.

Upvotes: 4

Related Questions