Well, that was fun. Wasted too much time searching for a solution to the rendering problem in Internet Explorer 7 that was chopping off the bottom of the title — my name! — that I intend to replace with a picture eventually, anyway.
None of the discussions I found nailed down the problem, so I figured it out on my own. What fixed it was adding some padding to H1 headers in the cascading style sheet:
#header h1 {
/*display:none; This will hide the text in your header */
padding-top:50px; padding-bottom:10px;
}
The “hide the text in your header” comment was an obvious hint!


