Align big text with images

Hello,

I need to center some text with the <img> surrounding it.
Vertical align works well with small text but not big one.

Sample [B]here[/B] :smiley:

Any ideas?
Thanks!

Set vertical-align on both, span & img

.packs {
    text-align:center;
}
[COLOR=Blue].packs span,
.packs img[/COLOR] {
    vertical-align:middle;
}
.packs span {
    font-size:110px;
    color:#FE660D;
}

Wow, thanks!