Forum How do I...?

How to place test aligned outside the main area

yet
We want to generate a PDF that looks something like that:


|-----------------| |----------|
| text text 1 | | info 1 |
|-----------------| |----------|



|-----------------| |----------|
| text text 2 | | info 2 |
|-----------------| |----------|

The 'text ...text..' should appear within the main content area (the text can be pretty long and each text block may span several pages).

In addition we want some info boxes to be appear either on the left or right
side of the page and they should be aligned with the start of each text box.

Questions:

- how to defined to the info boxes ?
- how to align them with the text boxes?
mikeday
How about using floats with negative margins for the info boxes?
yet
indeed, float:right + a negative margin works