Basically, when I query a database, if I get back a row that has contactType='contactInformation', I have to display all of the piece of contactInformation I have for a given user...
Usually: Full Name Job Title Phone Phone Phone Address Email Website Here is the problem, I want to be able to dynamically change different pieces of the information (normally Full Name could be a little bit bigger + bold, and the website could be a different color) I can't just pull each piece out of the database separately, because some users could have 15 phone numbers, others might not have an address, etc... The table looks like this: field_type x_offset y_offset Any ideas on what I can add to the table to tell myself what styles to put on different pieces?

