Gautam John wrote: > On Tue, Mar 11, 2008 at 4:50 PM, Sajith T S <[EMAIL PROTECTED]> wrote: > >> Can't you use CSS to place text? I'm not really qualified to talk, >> just wondering. > > I will check on that. > > Thank you!
I think it should be quite possible with CSS. Especially if you use a separate print css file which you can use to format the page only at the time of printing to represent your book layout. eg : The background of the <div> would correspond to the image of the page, and the text would be a nested <div> at the precise position you wanted. That way, you could make the screen version more amenable to data entry, using a separate screen css file and restrict the precise layout, only to the print version. You would have lines like this in the <head> section of the page. <link rel="stylesheet" type="text/css" href="screen.css" media="screen" /> <link rel="stylesheet" type="text/css" href="print.css" media="print" /> Bharath
