Our headers include our company logo in the top right corner of our PDF transformations. For some reason, on some of the pages, the logo is missing from the header. There doesn't appear to be particular pattern for the pages missing the logo, but when it does happen, it seems to be on a page that starts with a new chapter. There are no issues with the maptitle.
The customised CSS used for the headers in the body of the document is below:
Code: Select all
@page :left:right{
padding-top: 4pt;
@top-right {
content: '\A0\A0\A0';
background-image: url('Logo Inverted CMYK resized.png') !important;
background-repeat:no-repeat;
background-position:100% 50%;
border-bottom: 0.75pt solid red;
vertical-align: bottom;
}
@top-center {
content: string(maptitle)!important;
color: black;
border-bottom: 0.75pt solid red;
vertical-align: bottom;
}
@top-left{
content: " ";
border-bottom: 0.75pt solid red;
vertical-align: bottom;
}
}
Thanks.