Forum Feature requests

Bleed and Spreads -- Continued

somnath
I still have problem with background image specified in @page rule not printed in the bleed area:

I'm using CSS like this:
@page {
  size: A4;
  margin: 20mm;
  marks: crop cross;
  prince-bleed: 5mn;
  background: url('image.png') no-repeat;
  }


Using above code, the background image image.png prints right to the edge of the page, but not into the bleed area. Or Perhaps I need to do something else here. Please advise.
(With Prince 6.0 rev 8 )

Thanks,
Somnath
mikeday
Can you try using background-position, or adding position arguments on to the end of the background property, to move the starting position of the background image up and to the left a little bit, into the bleed area? For example: background-position: -2mm -2mm.
somnath
That solved the problem. Thanks & Regards, Somnath.