I have a client that wants some nice 3d letters as a page title banner for each page. The letters do need to be full color so a font really doesn't work. I'm thinking of rendering out the letters as a sprite for the whole alphabet and maybe using php to figure out the letter value and shift the sprite image accordingly. I also though I might be reinventing the wheel here. I'm reading up on about a dozen techniques, I'm looking for recommendations. Thanks!
I think what I would do is use php to wrap each letter in a span tag with a class for each lower and upper case letter. And make a sprite for the alphabet like you said. Then the css would look like:
Thanks!