QUOTE(bc- @ Jul 28 2009, 11:29 PM)

vertical align seems to work, i just couldn't get it to to work as
CODE
img.c,d,e {vertical-align:middle}
When you list several selectors like that, you must include the whole indiviual selectors, as I did above, separated by comma. What you have...
CODE
img.c,d,e {vertical-align:middle}
is the same as...
CODE
img.c { vertical-align :middle }
d { vertical-align :middle }
e { vertical-align :middle }
That would match images with the class 'c' and
elements called 'd' and 'e' (if there were any).
See the difference?