I can't figure out why scalebox isn't working. Here's the working example (uncomment the \scalebox line and the file doesn't compile. (I had trouble formatting the long lines).
\documentclass[11pt]{scrartcl}
\usepackage{graphics}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{\textwidth}{Xllll}
%\scalebox{.50}
\hline
Type of Violation & 1st & 2nd & 3rd & 4th \\
\hline
\begin{tabular}[c]{@{}l@{}}
Presence without \\
justification, during\\ work hours\\
in an unauthorized\\place\end{tabular} & 10\% & 25\% & 50\% & 1 day \\
\hline
Receiving non-work & \begin{tabular}[c]{@{}l@{}}Written\\ Warning\end{tabular} & 10\% & 15\% & 25\% \\
\hline
Personal use & \begin{tabular}[c]{@{}l@{}}Written\\
Warning\end{tabular} & 10\% & 25\% & 50\% \\
\hline
Interference & 50\% & 1 day & 2 days & 3 days \\
\hline
Entry/Exit & \begin{tabular}[c]{@{}l@{}}Written\\
Warning\end{tabular} & 10\% & 15\% & 25\% \\
\end{tabularx}
\end{document}
**This question is about scaling/reducing an entire table in size. The answer at Indentation after '\tabular' environments deals with INDENTING a table. This is NOT my issue.

\scalebox{0.5}{text}to scale thetext. However, please don't scale a table. If you want it to be smaller use\begin{tabularx}{.75\textwidth}{Xllll}or similar. If you want a smaller fontsize, set it manually. – samcarter_is_at_topanswers.xyz Nov 08 '17 at 15:03\scalebox{.50}{\hline}but\hlinecan not work inside a box of any sort. – David Carlisle Nov 08 '17 at 15:10\noindentbefore your table solves your problem. That means:\noindent \begin{tabularx}{\textwidth}{Xllll}. It's a duplicat to Indentation after '\tabular' environments. - Always helpful is\usepackage{showframe}-> it draws a page-layout diagram. – Bobyandbob Nov 08 '17 at 15:37