I am working on my resume and for that I am using one of the following construct:
\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{\ressubheading}[4]{\vspace{-.12cm}\hspace{-5pt}
\begin{tabular*}{7.18in}{l@{\extracolsep{\fill}}r}
\textbf{#1} & #2 \\
#3 & #4 \\
\end{tabular*}\vspace{-0.2cm}}
\begin{document}
\begin{itemize}
\item
\ressubheading{Name of Grad School}{City}{Major}{2010 -- 2012}
\end{itemize}
\end{document}
The command \ressubheading helps me define a table in which I write my credentials. However, I need to itemize such tables and while doing so the bullet provided by \item hangs in the middle of the two rows. This is looking kind of odd. I would like the bullet to be in front of the first row i.e. say in front of "Name of Grad School" in the example given. Here is an image showing the problem:
An ideas on what can be done ? Thanks a lot for your help !

10pt(you will notice a filesize10.cloloaded in your.logfile). Standard classes offer10pt,11ptand12pt. You might be interested in How to specify font size less than10pt? which addresses smaller font sizes in documents. – Werner Jul 15 '12 at 16:33