Absolute positioning is a double-edged sword. It's great for getting something exactly where you want it, but it means it falls outside of the traditional layout so text and other document objects simply ignore it like it wasn't there. From my experience you either have to go all in with absolute positioning (where everything is positioned), or try to ensure the objects / text in the flow take into consideration where the image will be and leave enough space accordingly. Either that or take off the positioning and stick it directly in the page content (or if it's a single page document use the static regions).
Date: Mon, 28 Mar 2016 18:19:18 +0530 Subject: Image placement at top of the page From: [email protected] To: [email protected] Dear All, I am trying to place the image at the top of the page with in the region-body. I have used <fo:block-container absolute-position="absolute"> The image was placed at top but the regular text is getting over lapped above the image. How to solve this problem. Here is my code: <fo:block-container absolute-position="absolute" top="0mm" text-align-last="center" overflow="hidden"> <fo:block top="0mm"> <fo:external-graphic src="../images/map6.jpg" margin="0mm" padding="0mm"/> </fo:block> <fo:block keep-with-previous="always"> <fo:inline>MAP 6: </fo:inline> <fo:inline hyphenate="true">Scotland.</fo:inline> </fo:block></fo:block-container> Please help me. Regards,
