Hey Dave,
I noticed that when clicking the "Top" link at the bottom of the page, you are not quite taken to the top of the page. The "margin-top: 10px;" attribute applied to the anchor tag containing the logo image is the culprit. If that CSS is applied to the image within the anchor tag instead, then it works correctly and looks the same. This involves locating the selector in the "additional.css" template:
HTML Code:
.logo-image{
margin-top: 10px;
margin-left: 15px;
}
and changing it to:
HTML Code:
.logo-image img{
margin-top: 10px;
margin-left: 15px;
}