Mailing labels

Any easy way to print on mailing labels that have 3 columns? I need these to fit in my laser printer. I have no trouble with single column labels, but I don't know how to make a partial display 3 times across a page with different records.

Thanks

Bob <bsm2th@gmail.com>

CSS floats, maybe?

DIV (page width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) DIV (float left, label width) etc...

Walter

Bob Smith wrote:

Any easy way to print on mailing labels that have 3 columns? I need these to fit in my laser printer. I have no trouble with single column labels, but I don't know how to make a partial display 3 times across a page with different records.

render :partial, :collection

For precision printing, you'll probably want to generate a PDF file using Prawn, wkhtmltopdf, or some other similar library.

Thanks

Bob <bsm2th@gmail.com>

Best,