I have to rename one of the many tables as Fig. But executing the below script resulted in ':' before the caption.
\renewcommand{\tablename}{}
\renewcommand{\thetable}{}
\begin{table}[!h]
\begin{center}
% table contents
\end{center}
\caption{Fig 1: Frame description}
\label{table1}
\end{table}
The caption of the table looked like this- : Fig 1: Frame description.
Is there a way to make the initial ':' disappear?

tableenvironment, just wrap it in afigureenvironment, then you don't have to worry about adjusting the caption detail. The contents within afigureenvironment can still be anything (need not necessarily be a figure). Strange..., but perfectly normal. – Werner Jun 12 '13 at 07:00\centeringinstead of thecenterenvironment inside atable; see http://tex.stackexchange.com/questions/2651/should-i-use-center-or-centering-for-figures-and-tables – lockstep Jun 12 '13 at 11:12