Forum How do I...?

2 rows in footer

Spavan
Hi
Is it possible to output a table content in bottom margin? I need my footer to contain disclaimer text and below that, an image.. so basically 2 rows. Can this be done within .css itself?

Thanks.
dauwhe
If you need an actual table, you would have to flow it into the margin box from elsewhere in the document.

If you just need some text and then an image on the second line, you could just use something like

@page {
	size: 6in 9in;
	margin: 2in;
	  @bottom-center {
	    content: 'disclaimer text \A' url('image.jpg');
	    white-space: pre;
	  }
	}