I'm having some difficulties with the table below. I don't understand why the text in the column 4 is not vertically centered. Also, the title of this column is not horizontally aligned with the titles of the 2nd and 3rd columns. Finally, the vertical line between the first and the second column is not continuous.
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\begin{table}
\centering
\footnotesize
\begin{tabular}{C{0.70in}| C{1.60in} C{1.60in} C{1.60in}}
& \textbf{Column 2} & \textbf{Column 3} & \textbf{Column 4} \\[1ex] \toprule
\textbf{Row 2} & text text text text & text text text text & text text text text \\[4ex] \midrule
\textbf{Row 3} & text text text text & text text text text & text text text text \\[4ex] \bottomrule
\end{tabular}
\end{table}
Many thanks in advance for your help :) Beth.

booktabsare not compatible, that's why the line is not continuous. If you delete the[1ex]etc. the alignment will work. – xfoo Feb 27 at 10:07