This question uses the suggestions given here. I am formatting my resume for which the following in a basic construct (minimum working example):
\documentclass[letterpaper,9pt]{article}
\newlength{\outerbordwidth}
\usepackage[empty]{fullpage}
\usepackage{color}
\usepackage{hyperref}
\definecolor{mygrey}{gray}{0.85}
\raggedbottom
\raggedright
\setlength{\tabcolsep}{0in}
\usepackage{tabularx}
\setlength{\paperwidth}{8.5in}
\setlength{\hoffset}{3pt}
\addtolength{\oddsidemargin}{-0.6in}
\addtolength{\topmargin}{-.7in}
\addtolength{\textheight}{1.0in}
\setlength{\textwidth}{7.488in}
\newcommand{\resitem}[1]{\item #1 \vspace{-3pt} }
\newcommand{\resheading}[1]{{\colorbox{mygrey}{\begin{minipage}{\textwidth} {\textbf{#1 \vphantom{p^{e}}}}\end{minipage}}} \vspace{2pt}}
\newcommand{\ressubheading}[4]{%
\item \vspace{-.2cm} \textbf{#1} \hfill #2\null\
#3 \hfill #4%
\vspace{-0.2cm}}
\begin{document}
\begin{center}
\textbf{\LARGE Rohit Bahl}
\end{center}
\begin{tabular}{7in}{l@{\extracolsep{3.95in}}l}
My Address Comes Here, Apt #x& \hfill Phone: 215-xxx-xxxx \
City, State & \hfill Email: \href{mailto:rbahl@xxxx.edu}{rbahl@xxxx.edu} \
\end{tabular}
\
\vspace{0.1cm}
\resheading{Education}
\vspace{-.35cm}
\begin{itemize}
\ressubheading{Name of Grad School}{City}{Major}{2010 -- 2012}
\begin{itemize}
\resitem{\textbf{Major}: }
\resitem{\textbf{Research Focus}}:
\resitem{\textbf{Courses}}:
\resitem{\textbf{GPA}: x.xx/4.00}
\end{itemize}
\ressubheading{Undergrad College }{City}{Bachelor of Technology in Electronics and Communication}{2005 -- 2009}
\end{itemize}
\end{document}
The issue is, although I have tried to align everything on the right side but its always off the mark. As demonstrated in the figure, the credentials and personal information on the right side (city/phone/email/year etc) are not aligning with the title box (Education):
What is the best method to do this automatically ? Thanks for your suggestions !
Note: I am modifying the basic template provided by David Grant here according to my own preferences.

@{}at the end of yourtabularsetup:\begin{tabular*}{7in}{l@{\extracolsep{3.95in}}l@{}}– jon Jul 15 '12 at 17:05