Here is a simple solution that ensures frames on every page, with the typogrid,geometry and framed package, with \FrameRule set to 0pt. One has to make titles by hand, as \maketitle creates empty (framed) pages before the title. The framed environment is used only to have a small space between text and frame.
\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[hmargin = \dimexpr 2.5cm + \fboxrule\relax, vmargin =\dimexpr 3cm + \fboxrule\relax]{geometry}
\usepackage[draft, columns = 1,margin = false, headings = false]{typogrid}
\usepackage{framed}
\usepackage{lipsum, titling}
\title{Some Title}
\author{I. Myself}
\setlength\FrameRule{0pt}
\begin{document}
\begin{framed}
\begin{center}
\Huge Some Title\\[2ex]
\Large I. Myself \\[4\baselineskip]
\end{center}
\section{A First Section}
\lipsum[1-4]
\end{framed}
\end{document}

\documentclassand the appropriate packages that shows what you have tried. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem which works for your particular case. – Peter Grill Aug 17 '14 at 18:08