Forum Feature requests

How can I give link to header logo.

vipinpa
Hello,

I want to add link to header logo. I have put a logo image on top left like this

@page {
@top-left
{
content: url(logo.jpg);
}
}

Please help me how can I give url to my header logo. What I need is, when I click on the logo it will redirect to my site home page.

Thanks,
Vpn
mikeday
At the moment you need to flow a link into the margin box, like this:
@page {
    @top-left
    {
        content: flow(header)
    }
}
...
<div style="flow: static(header)">
<a href="http://example.com">...image goes here...</a>
</div>