|
I would go about it like this:
First, position the label image absolutely with CSS.
Then absolutely position some DIVs across the image, like for the custom title, date, etc. Use CSS to create the right font in each DIV. Also, make them the exact width of the label image and use text-align:center so that the text stays centered within.
Then use javascript to dynamically print the text into each DIV as the person types into the form.
(Also, the javascript on the page you linked to is visible in the page source, although it's a little messy. I don't think you'd need nearly as much code as that.)
|