views:

32

answers:

2

Right now, the text seems not to be exactly vertical centered. It seems that there is more top-padding than bottom-padding.

Although of course, there is no padding in the CSS. How do I make this completely vertical aligned?

A: 

Try adding:

<table cellpadding="0">
Dustin Laine
No, it still stays the same
TIMEX
I assumed you were using what @Levi put in his answer, can you verify. And if not please post code.
Dustin Laine
A: 

<td valign = "middle">

In CSS:

vertical-align: middle;

Levi Hackwith