Using the CSS clip property will be the best solution to this issue .
The clip CSS property defines what portion of an element is visible. The clip property applies only to elements with position:absolute.
h1#site-title,
h2#site-description{
position: absolute;
clip: rect(1px 1px 1px 1px); /* IE7 */
clip: rect(1px, 1px, 1px, 1px);
}