I want to design a webapp that can print signs for various products, such as a big store. The content of the signs (product names , descriptions ,prices ) comes from the server and changes daily. Each product can be printed to a A3 or A4 document. It is also possible to have 3 signs in one A4 page. In addition each product type has a differently desinged sign (Tv's have the price on the top of the page in RED, and printers have the price on bottom left in BOLD)
the idea is that the program will get the product data from the DB, push it in inside a html template according to the page size and product type and print the html (or convert the html to pdf and print)
some problems I faced so far: - textfields from the DB can be to long, and overlap an area with other texts or scramble the rest of the sign. - there are many product types and each one has its own html design and css so its very hard to maintain if i need to change things . - different browsers show the sign differently . - different printers print the sign differently.
What would be the best way to approach the problem? could css frameworks help? I'm open for ideas.