Code: Select all
\documentclass[10pt,a4paper]{article}
%\usepackage{xcolor}
\usepackage[table]{xcolor} % for colors in tables
\usepackage{tabularx}
\usepackage{color} % for font color
\usepackage{graphicx}
\usepackage{multirow} % for multirows in tables
\begin{document}
\begin{table}
\begin{tabular}{|c| p{9.5cm}|}
\hline
\multicolumn{2}{|c|}{ \textbf{ \textcolor{red}{Title} }} \\
\hline
\hline
\multicolumn{2}{|c|}{ \cellcolor{red} \textbf{Super} } \\
\hline
\hline Location & Left \\
\hline Description & Sample text \\
\hline Screenshot &
\vspace{1pt}
\includegraphics[width=9cm]{gfx/3.png}
\caption{This makes a table caption, not figure caption:(}
\label{fig:screenshot}
\\
\hline Solution & latex-community.org :) \\
\hline
\end{tabular}
\caption{Here is ok - table caption}
\end{table}
\end{document}