I'm no guru at CSS, but maybe putting these on all of the elements would help:
margin-top: auto;
margin-bottom: auto;
Paulius Maruška
2009-02-22 10:58:02
I'm no guru at CSS, but maybe putting these on all of the elements would help:
margin-top: auto;
margin-bottom: auto;
Do this:
#contact_4 * {
vertical-align: middle;
display: inline;
}
The "display: inline;" isn't necessary if you have no other styles changing those elements display types.
P.S. There's no "name" attribute for div and span elements.