When you process your document, you'll see the warning:
LaTeX Font Warning: Font shape `OT1/cmr/bx/sc' undefined
using `OT1/cmr/bx/n' instead on input line 10.
This warning indicates that small caps in the required series (bold face) are not available in the current (Computer Modern in OT1 font encoding) font and LaTeX uses a replacement (Computer Modern in bold face series in OT1 font encoding).
You need a font having small caps in boldface. This can be achieved using the T1 encoding (or a package such as fourier providing the required font):
\documentclass[12pt,a4paper,draft]{article}
\usepackage[T1]{fontenc}
\usepackage{url}
%\usepackage{fourier}
\begin{document}
\thispagestyle{empty}
\setlength{\oddsidemargin}{53pt}
\setlength{\evensidemargin}{53pt}
\setlength{\marginparwidth}{57pt}
\setlength{\footskip}{30pt}
{\large\textbf{Albert E\textsc{instein}}}\\[0.2cm]
\end{document}

Notice, however, that small caps and bold face seems redundant.
Also, changes to the page layout are better done using the geometry package.
\scshapejust before the name. For instance,\author{\scshape Albert Einstein}, should change the font to typeset the author name in small caps. – cslstr Mar 28 '14 at 02:15\scshapeor the command\textsc, you won't get the desired result. – Gonzalo Medina Mar 28 '14 at 02:18